using smtp sent large file upto 60MB

Chris Angelico rosuav at gmail.com
Tue Dec 4 05:07:49 EST 2012


On Tue, Dec 4, 2012 at 7:15 PM, moonhkt <moonhkt at gmail.com> wrote:
> How to using python send file uptp 60MB ?

Step one: Don't. SMTP is almost never the best choice for sending huge
files around.

There are plenty of other ways to share files; send an email with
instructions on how to access the file, rather than attaching the
file. For general consumption, the easiest way is usually to include a
URL for HTTP download. If it's something internal, you might want to
put the file on a shared-access FTP server or file share.

ChrisA



More information about the Python-list mailing list