Is there a way to add "send mail" functinality to Drupal on a site without SMTP server?
I have a (testing) Drupal 6 site on a free web hosting platform, which unfortunately removed SMTP support for free hostings.
Does any one know whether there's a way to give Drupal the ability to send emails on a site without SMTP server, e.g. via the public Gmail's SMTP server? can "sendmail" help in this开发者_Python百科 case?
sendmail probably won't help: If the provider is blocking sending mails on the system, there will be no sendmail
.
There is a Drupal mail module that allows direct communication with a SMTP server; it is based on the PHPMailer library. As far as I can see though, the Drupal 6 version is still in Beta
Libraries like SwiftMailer can talk to SMTP servers directly; here is an example on how to send an E-Mail via GMail
精彩评论