1. 程式人生 > >sendmail 安裝配置與使用

sendmail 安裝配置與使用

系統/運維 Linux

安裝sendmail

yum install -y sendmail

編輯/etc/mail/local-host-names

vim /etc/mail/local-host-names

填寫主機名

配置sendmail(這裏以263郵箱為例)

vim /etc/mail.rc

set from=你想接收方看到的收件人名字,helloworld都行
set smtp=smtp.263.net
set smtp-auth-user=你的郵箱
set smtp-auth-password=郵箱認證
set smtp-auth=login

重啟sendmail

systemctl restart sendmail


測試

echo "test sendmail"|mail -s "title" 目標郵箱地址

sendmail 安裝配置與使用