Linux 使用命令傳送郵件

2021-10-02 00:21:08 字數 618 閱讀 1598

#執行下面的命令,各位大俠都對號入座吧

#sendmial

service sendmail stop

chkconfig sendmail off

#postfix

service postfix stop

chkconfig postfix off

#再狠一點就直接解除安裝吧..

yum remove sendmail

yum remove postfix

$ vim /etc/mail.rc  

set [email protected]

set smtp=smtp.qq.com

set smtp-auth-user=123456

set smtp-auth-password=「寫入底下生成的授權碼」

set smtp-auth=login

這裡使用了qq郵箱的smtp,需要做以下配置:

設定---->下面的開啟服務那裡---->生成授權碼

echo  hello word | mail -s " title" [email protected]

linux使用mail命令傳送郵件

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

使用Linux傳送郵件

系統收到郵件都會儲存在 var spool mail linux 使用者名稱 檔案中。在 linux 中輸入mail 就進行了收件箱,並顯示二十封郵件列表。此時命令提示符為 unread 標記為未讀郵件 h headers 顯示當前的郵件列表 l list 顯示當前支援的命令列表 help 顯示多個...

Linux下使用mail命令傳送郵件

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