Sean W.
Sean W.

Reputation: 5132

What is the simplest way to send an email with an attachment using Python?

What is the simplest way to send an email with an mp3 attachment using Python? I've written scripts in the past which used a pipe to sendmail to send basic email messages, but I've never bothered with attachments before.

Thanks in advance.

Upvotes: 1

Views: 584

Answers (2)

Tony
Tony

Reputation: 1

You can also take a look at the python code used for: http://caspian.dotconf.net/menu/Software/SendEmail/

Upvotes: 0

Pablo Santa Cruz
Pablo Santa Cruz

Reputation: 181430

Use email package. It's pretty simple.

In the URL I linked, you'll find straight examples on how to do just that.

Hope it helps.

Upvotes: 2

Related Questions