Reputation: 5132
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
Reputation: 1
You can also take a look at the python code used for: http://caspian.dotconf.net/menu/Software/SendEmail/
Upvotes: 0
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