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')
On Wednesday, July 31, 2013 11:33:25 AM UTC-4, wach...@gmail.com wrote:
> I have created a script to log in a website. It gets its username and
> password from two files, then log's in with this credentials. My code is not
> showing me what username it is using to login from the file. And I am no
On Wednesday, July 31, 2013 11:33:25 AM UTC-4, wach...@gmail.com wrote:
> I have created a script to log in a website. It gets its username and
> password from two files, then log's in with this credentials. My code is not
> showing me what username it is using to login from the file. And I am no
On Wednesday, July 31, 2013 12:21:59 PM UTC-4, John Gordon wrote:
> In wachk...@gmail.com
> writes:
>
>
>
> > I have created a script to log in a website. It gets its username and
>
> > password from two files, then log's in with this credentials. My code is
>
> > not showing me what usernam
I have created a script to log in a website. It gets its username and password
from two files, then log's in with this credentials. My code is not showing me
what username it is using to login from the file. And I am not sure if it is
even opening up the url and prompting for login. I am stuck