macOS下用命令行发邮件
Posted myway_liang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了macOS下用命令行发邮件相关的知识,希望对你有一定的参考价值。
brew install msmtp vi ~/.mailrc set sendmail=/usr/local/bin/msmtp wq! vi ~/.msmtprc # Use an external SMTP server with insecure authentication. # (manually choose an insecure authentication method.) # Note that the password contains blanks. defaults #################################################################### # A sample configuration using sina.cn #################################################################### account default host smtp.sina.cn port 25 from [email protected] auth login tls off user [email protected] password 2wsxzaq1 :wq! chmod 600 ~/.msmtprc
echo "this‘s an apple." |mail 888888@qq.com
上述方法参考自https://my.oschina.net/uhziel/blog/186683
以上是关于macOS下用命令行发邮件的主要内容,如果未能解决你的问题,请参考以下文章
Mac下命令行发邮件搭配php(shell_exec...)等脚本语言,轻松发邮件,告别各种依赖库