Linux下设置发邮件

1 安装 mail 程序

yum install mailx

2 修改配置文件

在 /etc/mail.rc 增加以下:

set from=hello
set smtp=smtp.world.com
set smtp-auth-user=hello@world.com
set smtp-auth-password=helloworld

3 调用 mail 命令发邮件

echo "test" | mail -s mail-test [email protected]

你可能感兴趣的:(linux,邮件,mail,Mailx)