Linux发送邮件
Linux发送邮件
首先,需要安装所需要软件包
yum -y install mailx
修改配置文件,在末尾处添加内容如下,以网易邮箱为例
vim /etc/mail.rc
首先,需要安装所需要软件包
yum -y install mailx
修改配置文件,在末尾处添加内容如下,以网易邮箱为例
vim /etc/mail.rc
set bsdcompat
set from=abc@163.com smtp=smtp.163.com
set smtp-auth-user=abc@163.com smtp-auth-password=def
set smtp-auth=login
set from=abc@163.com smtp=smtp.163.com
set smtp-auth-user=abc@163.com smtp-auth-password=def
set smtp-auth=login
set from=你的邮箱地址
set smtp-auth-user=你的邮箱地址 smtp-auth-password=授权密码
set smtp-auth-user=你的邮箱地址 smtp-auth-password=授权密码
设置上文的授权密码
然后可通过命令来进行发送邮件
echo “内容”|mail -s "主题" 邮箱
echo “内容”|mail -s "主题" 邮箱