Email Script
Victor Subervi
victorsubervi at gmail.com
Tue Mar 2 10:48:19 EST 2010
Hi;
I have the following code:
def my_mail():
user, passwd, db, host = login()
database = MySQLdb.connect(host, user, passwd, db)
cursor= database.cursor()
ourEmail1 = 'marilyn at globalsolutionsgroup.vi'
ourEmail1 = 'phil at globalsolutionsgroup.vi'
ourEmail2 = 'benoismyname at gmail.com'
form = cgi.FieldStorage()
name = form.getfirst('name', '')
email = form.getfirst('from', '')
message = form.getfirst('message', '')
message = 'Name: %s\nMessage: %s' % (name, message)
subject = 'Message from Web Site'
Email(
from_address = email,
to_address = ourEmail1,
subject = subject,
message = message
).send()
Email(
from_address = email,
to_address = ourEmail2,
subject = subject,
message = message
).send()
print 'Thank you, %s, we will get back to you shortly!<br />' % (name)
This sends only the first of the two emails. Why doesn't it work to send the
second? What do?
TIA,
beno
--
The Logos has come to bear
http://logos.13gems.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20100302/4e3310c9/attachment.html>
More information about the Python-list
mailing list