Category Archives: Mailer
SMTP, IMAP and POP server settings
GMAIL POP SMTP IMAP Host pop.gmail.com smtp.gmail.com imap.gmail.com Port 995 25 993 SSL Required Yes Yes Yes YAHOO POP SMTP IMAP Host pop.mail.yahoo.com smtp.mail.yahoo.com NA Port 110 25 NA SSL Required Yes Yes NA YAHOO PLUS POP SMTP IMAP Host plus.pop.mail.yahoo.com plus.smtp.mail.yahoo.com NA Port 995 465 NA SSL Required Yes Yes NA Windows Live POP…
Using helper method from action mailer views
Action Mailer of Ruby on Rails(RoR) allows you to send emails from application using a mailer model and views. Sometimes you may need to use any helper method though it does not allow by default. In that case you have to include helper(module) in the Mailer class. Say, you may need to use method(s) from…
PHPMailer: Called Mail() without being connected
I was getting the error message to send email using PHPMailer but didn’t get so much help after googling. Then, started to debug the error source and found that it generate for SMTP port and protocol mismatch. Usually, SMTP port is not same for different protocol with/without ssl. So, It’s very important to find the…