Fast Job Applier Updated

I made some minor updates to Fast Job Applier. It now works with GMAIL accounts. It also now runs on Python 2.4 instead of Python 2.3.

Go check it out


By the way, if you want Python’s smtplib to work with Gmail I found that adding the code below made it work. I’m not sure why it works but it was reccomended on this website.

Before

session = smtplib.SMTP(host=smtpserver)
session.login(smtpuser,smtppass)

After

session = smtplib.SMTP(host=smtpserver)
session.ehlo()
session.starttls()
session.ehlo()
session.login(smtpuser,smtppass)

del.icio.us |  Digg |  FURL |  Yahoo! My Web 2.0 |  Reddit

Comments are closed.