配置linux使用mail傳送郵件到163郵箱

2021-08-21 06:57:47 字數 483 閱讀 2987

1.進行配置

yum install -y mailx

/etc/mail.rc新增對163的授權:

set [email protected] smtp="smtp.163.com"

set smtp-auth-user="[email protected]" smtp-auth-password="******x"      這個密碼是163郵箱開啟pop3協議之後設定的授權密碼,不是郵箱的登陸密碼

set smtp-auth=login

2.配置完成後就可以傳送郵件了

[root@root mail]# echo "test 163"|mail -s "test sub"  [email protected]

test 163:這是郵件的內容

mail -s "test sub":這是設定郵件的subject主題

linux使用mail命令傳送郵件

在工作中使用linux,偶爾也會需要使用mail命令來進行發郵件。從上面的命令看,系統已經安裝了mail,對些我們還需要設定一下mail,讓它使用外面的郵箱進行發郵件。設定檔案是 etc mail.rc 我使用的是163郵件,所以設定mail使用163 發郵件需要在 etc mail.rc 最後新增...

Linux 郵件傳送mail

sudo service sendmail start 啟動 sendmail 確定 啟動 sm client 確定 from 小剛 王剛 郵件傳送者,可以代替傳送郵件 sender michael jones to 小明 劉明 郵件接收者 subject 郵件測試 saying hello 郵件主...

Linux下使用mail命令傳送郵件

因為需要經常備份 的資料,所以了解並學習了下linux下如何通過shell來傳送郵件,這裡以centos為例,使用mail命令來進行外部郵件的傳送。mail命令的語法如下 usage mail iinv s subject c cc addr b bcc addr to addr sendmail ...