Re: How Do I get my Python script to attach multiple files and send as a single email

2013-08-08 Thread Joel Goldstick
On Thu, Aug 8, 2013 at 3:19 PM, Gary Herron wrote: > On 08/08/2013 12:05 PM, wachk...@gmail.com wrote: >> >> I have a dilemma I cant figure out how to send multiple files as an >> attachment to my email using this script. I can only send a single file >> attachment . Help!!! Here is my script. >>

Re: How Do I get my Python script to attach multiple files and send as a single email

2013-08-08 Thread Ian Kelly
On Thu, Aug 8, 2013 at 1:05 PM, wrote: > I have a dilemma I cant figure out how to send multiple files as an > attachment to my email using this script. I can only send a single file > attachment . Help!!! Here is my script. You just need to repeat part3 for each attachment. Also the content

Re: How Do I get my Python script to attach multiple files and send as a single email

2013-08-08 Thread Gary Herron
On 08/08/2013 12:05 PM, wachk...@gmail.com wrote: I have a dilemma I cant figure out how to send multiple files as an attachment to my email using this script. I can only send a single file attachment . Help!!! Here is my script. All filename's are txt files. There is a standard Python mo

How Do I get my Python script to attach multiple files and send as a single email

2013-08-08 Thread wachkama
I have a dilemma I cant figure out how to send multiple files as an attachment to my email using this script. I can only send a single file attachment . Help!!! Here is my script. All filename's are txt files. fo = with open(filename,'rb') fo1 = open(filename2,'rb') fo2= open(filename3, 'rb')