search for: smtplib

Displaying 3 results from an estimated 3 matches for "smtplib".

2010 Feb 25
2
getaddrinfo problem
...message = message 30 ).send() 31 print 'Thank you, %s, we will get back to you shortly!<br />' % (name) message = 'Name: beno -\nMessage: test' /var/www/html/mysite.com/simplemail/simplemail.py in send(self=<simplemail.Email object>) 344 smtp = smtplib.SMTP() 345 if self.smtp_server: 346 smtp.connect(self.smtp_server) 347 else: 348 smtp.connect() smtp = <smtplib.SMTP instance>, smtp.connect = <bound method SMTP.connect of <smtplib.SMTP instance>>, self = <simplemail.Email object...
2011 May 17
5
Email out of R (code)
...ce package rJython for executing Python from R. The code itself provides basic email functionality for email servers requiring authentication. It should be easy to extend it (e.g., for sending attachments). I hope it's useful. require(rJython) rJython <- rJython() rJython$exec( "import smtplib" ) rJython$exec("from email.MIMEText import MIMEText") rJython$exec("import email.utils") mail<-c( #Email settings "fromaddr = 'sender email address'", "toaddrs = 'recipient email address'", "msg = MIMEText('This is the bod...
2010 Apr 01
7
Sending mail from CLI to another SMTP host
Hi all, Is it possible to send mail from CLI (bash, python) without any LOCAL SMTP installed, using SMTP on another machine. Care to give a glimpse of the code? Thank you.