linux中實現shell群發郵件指令碼

來源:互聯網
上載者:User

標籤:伺服器   linux   用戶端   smtp   郵箱   

linux版本:CentOS  6.7        //可以使用lsb_release -a查看

一、修改/etc/mail.rc        //在最後面追加就行,也可以 echo >>

set [email protected]    //你自己的真實郵箱地址

set smtp=smtp.exmail.qq.com       //在郵箱設定,用戶端設定,設定方法,發送伺服器裡

set [email protected]    //自己郵箱真真實位址

set smtp-auth-password=123456       //自己郵箱密碼

set smtp-auth=login

:wq

二、到這裡已經實現實現外部郵箱發送mail了,可以命令列輸入

echo "Test Mail" | mail -s "Test"  [email protected]

########################################################################

也可以寫指令碼:

#!/bin/bash

user="

目標1  123456789@qq.com

目標2  [email protected]

……

"

userlist=`echo -e "${user}" | awk  ‘{print $2}‘`

echo $userlist

mail -v -s "測試郵件"  $userlist < test.txt

:wq

其中:

-v 顯示詳細資料

-s 郵件標題

test.txt     是你要輸入郵件的內容

然後crontab -e 編輯計劃任務,就可以實現定時發送郵件啦!


本文出自 “Linux營運” 部落格,請務必保留此出處http://dywwen.blog.51cto.com/12715220/1916019

linux中實現shell群發郵件指令碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.