参考:
For Ubuntu (test on 14.04)
$ sudo apt install mailutils
在/etc/nail.rc(CentOS为/etc/mail.rc)中添加以下内容:
以163邮箱为例,邮箱为:username@163.com,授权码为:shouquanma
set from=username@163.com # 发送的邮件地址set smtp=smtp.163.com # 发送邮件服务器set smtp-auth-user=username@163.com # 发件人账号set smtp-auth-password=shouquanma # 账号的授权码,如果使用密码则会发送失败set smtp-auth=login # 邮件认证方式
发送邮件:
$ mail -s 'mail_title' target_mail@163.com < msg
邮件title为mail_title,收件人为:target_mail@163.com,邮件内容在msg文件中。