sendmail library ?!

Tim Roberts timr at probo.com
Mon Nov 18 00:00:02 EST 2013


Tamer Higazi <th982a at googlemail.com> wrote:
>
>I am looking for a python library that does mailing directly through
>"sendmail".
>
>When I look into the docs, I see only an "smtlip" library but nothing
>that could serve with sendmail or postfix.
>
>Any ideas ?!

Remember that
   import smtplib
   s = smtplib.SMTP("localhost")
usually communicates directly with the local server, whether it be sendmail
or postfix or whatever.
-- 
Tim Roberts, timr at probo.com
Providenza & Boekelheide, Inc.



More information about the Python-list mailing list