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.
—
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)





