方法一:簡單郵件發送
echo “hello world" | mail -s "Subject" yanggang_2050@163.com
效果
方法二: 文字格式設定發送郵件
# !/bin/sh</p><p>from_name="from@yanggang"<br />from="yanggang@fruitsmobile.com"<br />to="yanggang_2050@163.com"</p><p>email_title="Test Mail"<br />email_content="/home/barry/top800/test/output_email.html"<br />email_subject="Top800_Games_Free_USA"</p><p>echo -e "To: \"${email_title}\" <${to}>\nFrom: \"${from_name}\" <${from}>\nSubject: ${email_subject}\n\n`cat ${email_content}`" | /usr/sbin/sendmail -t效果:
方法三:html格式發送郵件
# !/bin/sh</p><p>from='yanggang@fruitsmobile.com'<br />to='yanggang_2050@163.com'</p><p>email_date=''<br />email_content='/home/barry/top800/test/output_email.html'<br />email_subject='Top800_Game_Free_USA'</p><p>function send_email(){<br /> email_date=$(date "+%Y-%m-%d_%H:%M:%S")<br /> echo $email_date</p><p> email_subject=$email_subject"__"$email_date<br /> echo $email_subject</p><p> cat $email_content | formail -I "From: $from" -I "MIME-Version:1.0" -I "Content-type:text/html;charset=gb2312" -I "Subject: $email_subject" | /usr/sbin/sendmail -oi $to</p><p>}</p><p>send_email效果:
源碼下載(linux shell 發送email 郵件)