Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91996932
mail.py.wml
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 16, 11:49
Size
797 B
Mime Type
text/x-python
Expires
Mon, Nov 18, 11:49 (2 d)
Engine
blob
Format
Raw Data
Handle
22360786
Attached To
R3600 invenio-infoscience
mail.py.wml
View Options
try:
import smtplib
except ImportError, e:
print "Error: %s" % e
import sys
sys.exit(1)
def send_email(fromaddr, toaddr, body, attempt=0):
if toaddr != "":
if attempt > 2:
raise functionError('error sending email to %s: SMTP error; gave up after 3 attempts' % toaddr)
try:
server = smtplib.SMTP('localhost')
server.sendmail(fromaddr, toaddr, body)
server.quit()
except:
time.sleep(10)
send_email(fromaddr, toaddr, body, attempt+1)
return
def forge_email(fromaddr, toaddr, bcc, subject, content):
body = 'From: %s\nTo: %s\nbcc:%s\nContent-Type: text/plain; charset=utf-8\nSubject: %s\n%s' % (fromaddr, toaddr, bcc,subject, content)
return body
Event Timeline
Log In to Comment