
Hi, Does anybody know of any good libraries I can use to send a mail via google's SMTP? I found SMTPClient and HaskellNet. The former does not support TLS and the latter does not seem to have examples for using TLS to send an email via SMTP. Did anybody manage to do that? Thanks Salil

Does anybody know of any good libraries I can use to send a mail via google's SMTP? I found SMTPClient and HaskellNet. The former does not support TLS and the latter does not seem to have examples for using TLS to send an email via SMTP. Did anybody manage to do that?
A fellow beginner, so I don't have indepth knowledge of the subject. But can this help - http://stackoverflow.com/questions/8036680/haskell-smtp-over-ssl http://www.haskell.org/pipermail/beginners/2012-July/010190.html

Hi Aninda,
Thanks for your reply. Unfortunately, I have already tried out these
examples and they don't seem to work.
HaskellNet has a github repo. I will contact the author and see
whether I can find any solution.
Thanks
Salil
On Tue, Sep 18, 2012 at 10:40 PM, Anindya Mozumdar
Does anybody know of any good libraries I can use to send a mail via google's SMTP? I found SMTPClient and HaskellNet. The former does not support TLS and the latter does not seem to have examples for using TLS to send an email via SMTP. Did anybody manage to do that?
A fellow beginner, so I don't have indepth knowledge of the subject.
But can this help -
http://stackoverflow.com/questions/8036680/haskell-smtp-over-ssl
http://www.haskell.org/pipermail/beginners/2012-July/010190.html

I do not believe there is and support for ssl in HaskellNet at
present. It has I believe
been looked at but it's not simple to implement. The best way of
integrating tls would
be to implement smtp over conduit as http-conduit does.
On Tue, Sep 18, 2012 at 4:08 PM, Salil Wadnerkar
Hi Aninda,
Thanks for your reply. Unfortunately, I have already tried out these examples and they don't seem to work. HaskellNet has a github repo. I will contact the author and see whether I can find any solution.
Thanks Salil
On Tue, Sep 18, 2012 at 10:40 PM, Anindya Mozumdar
wrote: Does anybody know of any good libraries I can use to send a mail via google's SMTP? I found SMTPClient and HaskellNet. The former does not support TLS and the latter does not seem to have examples for using TLS to send an email via SMTP. Did anybody manage to do that?
A fellow beginner, so I don't have indepth knowledge of the subject.
But can this help -
http://stackoverflow.com/questions/8036680/haskell-smtp-over-ssl
http://www.haskell.org/pipermail/beginners/2012-July/010190.html
_______________________________________________ Beginners mailing list Beginners@haskell.org http://www.haskell.org/mailman/listinfo/beginners

Robert,
are you saying you got SMPT to work using the http-conduit library? If
so, that is great...I've never managed to get it to work. Do you have
any code you could share? Just a proof-of-concept (toy) program would
be great!
Tim
On Tue, Sep 18, 2012 at 9:41 AM, Robert Wills
I do not believe there is and support for ssl in HaskellNet at present. It has I believe been looked at but it's not simple to implement. The best way of integrating tls would be to implement smtp over conduit as http-conduit does.
On Tue, Sep 18, 2012 at 4:08 PM, Salil Wadnerkar
wrote: Hi Aninda,
Thanks for your reply. Unfortunately, I have already tried out these examples and they don't seem to work. HaskellNet has a github repo. I will contact the author and see whether I can find any solution.
Thanks Salil
On Tue, Sep 18, 2012 at 10:40 PM, Anindya Mozumdar
wrote: Does anybody know of any good libraries I can use to send a mail via google's SMTP? I found SMTPClient and HaskellNet. The former does not support TLS and the latter does not seem to have examples for using TLS to send an email via SMTP. Did anybody manage to do that?
A fellow beginner, so I don't have indepth knowledge of the subject.
But can this help -
http://stackoverflow.com/questions/8036680/haskell-smtp-over-ssl
http://www.haskell.org/pipermail/beginners/2012-July/010190.html
_______________________________________________ Beginners mailing list Beginners@haskell.org http://www.haskell.org/mailman/listinfo/beginners
_______________________________________________ Beginners mailing list Beginners@haskell.org http://www.haskell.org/mailman/listinfo/beginners
participants (4)
-
Anindya Mozumdar
-
Robert Wills
-
Salil Wadnerkar
-
Tim Perry