使用SSMTP从本地主机发送电子邮件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用SSMTP从本地主机发送电子邮件相关的知识,希望对你有一定的参考价值。
sudo apt-get install ssmtp sudo geany /etc/ssmtp/ssmtp.conf Paste to config --------------- hostname=ubuntu AuthPass=password FromLineOverride=YES mailhub=smtp.gmail.com:587 UseSTARTTLS=YES sudo geany /etc/php5/apache2/php.ini Paste this to php.ini --------------------- sendmail_path = /usr/sbin/ssmtp -t To verify if the server is sending emails, send a test email: ------------------------------------------------------------- ssmtp [email protected] You can check if the email are sent by running the following in a second terminal (ALT+F2): ------------------------------------------------------------------------------------------ tail -f /var/log/mail.log
以上是关于使用SSMTP从本地主机发送电子邮件的主要内容,如果未能解决你的问题,请参考以下文章