Tamer Higazi <th9...@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, t...@probo.com
Providenza & Boekelheide, Inc.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to