Linux发送邮件
Posted 小侠猪猪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 "主题" 邮箱
以上是关于Linux发送邮件的主要内容,如果未能解决你的问题,请参考以下文章