linux bash下通過mailx發送中文內容顯示為附件的解決

來源:互聯網
上載者:User


linux bash下通過mailx發送中文內容顯示為附件的解決 mailx版本,這裡預設是mail是指向mailx程式的# ll /bin/mail  lrwxrwxrwx. 1 root root 5  7月 22 2011 /bin/mail -> mailx      www.2cto.com  # mail -V  12.4 7/29/08   mail.rc配置,設定外部smtp伺服器cat /etc/mail.rc  #set sendcharsets=iso-8859-1,utf-8  set from=demo@163.com smtp=smtp.163.com  set smtp-auth-user=demo smtp-auth-password=demopassword smtp-auth=login   發送郵件,QQ郵箱裡無法看到內容,只看到一個附件。附件裡的內容就是我們發的中文內容#!/bin/bash  ...  echo  "中文內容測試! " | /bin/mail -s "中文標題"  xxx@qq.com  ...  


   www.2cto.com   但是手動輸入命令內送郵件內容卻顯示正常。或許是bash運行時系統編碼環境不通導致。查看系統編碼環境 # locale   LANG=zh_CN.gb18030  LC_CTYPE="zh_CN.gb18030"  LC_NUMERIC="zh_CN.gb18030"  LC_TIME="zh_CN.gb18030"  LC_COLLATE="zh_CN.gb18030"  LC_MONETARY="zh_CN.gb18030"  LC_MESSAGES="zh_CN.gb18030"  LC_PAPER="zh_CN.gb18030"  LC_NAME="zh_CN.gb18030"  LC_ADDRESS="zh_CN.gb18030"  LC_TELEPHONE="zh_CN.gb18030"  LC_MEASUREMENT="zh_CN.gb18030"  LC_IDENTIFICATION="zh_CN.gb18030"  LC_ALL=    www.2cto.com  把發送命令更改為 #!/bin/bash  export LANG=zh_CN.gb18030  echo  "中文內容測試! " | /bin/mail -s "中文標題"  xxx@qq.com  ...  則是內送郵件就正常顯示為中文了。  作者 islandstar

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.