有没有办法在linux终端发送简单的电子邮件?
to: somebody@gmail.com
sub: Sending email from linux terminal
body: This is a short email sent from linux terminal
我需要设置什么样的堆栈或smtp?我该如何设置它们?
答案 0 :(得分:6)
终端版本:
mail somebody@gmail.com
shell脚本的版本:
echo "This is a short email" | mail -n -s "Sending email" somebody@gmail.com
AFAIK典型的Linux发行版默认安装MTA(sendmail / postfix / exim / ...)。如果你有静态的公共IP地址,那么很可能你有一个有效的自我配置。
配置没有静态公共IP的MTA更加棘手。