Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92028056
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, 18:10
Size
704 B
Mime Type
text/x-python
Expires
Mon, Nov 18, 18:10 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22365632
Attached To
R3600 invenio-infoscience
mail.py.wml
View Options
import smtplib
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