set smtp=smtps://smtp.xxx.com:465 # 这里填入smtp地址
set smtp-auth=login # 认证方式
set [email protected] # 这里输入邮箱账号
set smtp-auth-password=password # 这里填入密码
set ssl-verify=ignore # 忽略证书警告
set nss-config-dir=/etc/pki/nssdb # 证书所在目录
set [email protected] # 设置发信人邮箱和昵称
#set smtp-use-starttls=yes # STARTTLS时使用
|
# 126不支持STARTTLS,使用465端口
account 126 {
set smtp=smtps://smtp.126.com:465
set smtp-auth=login
set smtp-auth-password=password
set ssl-verify=ignore
set nss-config-dir=/etc/pki/nssdb
}
# QQ邮箱支持STARTTLS,使用587端口
account qq {
set smtp=smtp://smtp.qq.com:587
set smtp-auth=login
set smtp-auth-password=password
set ssl-verify=ignore
set nss-config-dir=/etc/pki/nssdb
set from="[email protected](nickname)"
set smtp-use-starttls=yes
}
|
转自:http://www.51testing.com/html/53/n-3727153.html 侵删
bash: mail: command not found的解决方法
yum -y install mailx
1.配置
vim /etc/mail.rc文件尾增加以下内容
set from= [email protected] smtp="smtp.qq.com"
set smtp-auth-user=" [email protected]" smtp-auth-password=" 123456"
set smtp-auth=login
说明:from: 对方收到邮件时显示的发件人
smtp: 指定第三方发送邮件的smtp服务器地址
smtp-auth: SMTP的认证方式。默认是LOGIN,也可改为CRAM-MD5或PLAIN方式
smtp-auth-user: 第三方发邮件的用户名
smtp-auth-password: 用户名对应密码
2.Mail命令
% mail --h
mail: illegal option -- -
Usage: mail -eiIUdEFntBDNHRV~ -T FILE -u USER -h hops -r address -s SUBJECT -a FILE -q FILE -f FILE -A ACCOUNT -b USERS -c USERS -S OPTION users注:部分系统参数稍有差异,最好看帮助
1) 无邮件正文
- mail -s "主题" 收件地址
% mail -s " 测试 " 1968089885@foxmail.com
2) 有邮件正文
- mail -s "主题" 收件地址< 文件(邮件正文.txt)
% mail -s " 邮件主题 " 1968089885@foxmail.com < /data/findyou.txt
- echo "邮件正文" | mail -s 邮件主题 收件地址
% echo " 邮件正文内容 " | mail -s " 邮件主题 " 1968089885@foxmail.com
- cat 邮件正文.txt | mail -s 邮件主题 收件地址
% cat /data/findyou.txt | mail -s " 邮件主题 " 1968089885@foxmail.com
3) 带附件
- mail -s "主题" 收件地址 -a 附件 < 文件(邮件正文.txt)
% mail -s " 邮件主题 " 1968089885@foxmail.com -a /data/findyou. tar.gz < /data/findyou.txt
3.脚本
sendmail.sh
#!/bin/bash
#author:findyou
help(){
echo " eg: $0 [Subject] [address] [content_file] [file] "
echo ""
exit 1
}
if [ ! -n " $1 " ] ; then
help
fi
cDate=` date +%Y%m%d`
if [ ! -n " $2 " ] ; then
help
else
mail_to=$ 2
echo " Send Mail to ${mail_to} "
fi
if [ ! -n " $4 " ] ; then
mail -s $ 1 ${mail_to}<$ 3
else
mail -s $ 1 -a $ 4 ${mail_to}<$ 3
fi
使用
[root@ 123]$ ./sendmail. sh test 1968089885@qq.com abc.txt
Send Mail to 1968089885@qq.com
[root@ 123]$
说明:建议直接使用命令 ,有脚本只是为了在打印显示相关信息,多此一举。
转自:https://www.cnblogs.com/findyou/p/5760970.html