所以發現若非使用Outlook收信(也就是去WEB那裡線上看)
就都是亂碼...
在某篇討論串中也提到..將信件以HTML格式寄出即可\r
所以小弟積極的尋找改法...(不過在竹貓找不到=.=)
終於在官網找到了..順便分享出來!!
-----[ OPEN ]---------------------------
includes/emailer.php
-----[ FIND ]----------------------------
代碼: 選擇全部
$universal_extra = "MIME-Version: 1.0
Content-type: text/plain; charset="
代碼: 選擇全部
text/plain;
-----[ REPLACE WITH ]-----------------
代碼: 選擇全部
text/html;
-----[ FIND ]-----------------------------
代碼: 選擇全部
$this->mailMsg = '--' . $mime_boundary . "
Content-Type: text/plain;
\tcharset=\""
-----[ IN-LINE FIND ]--------------------
代碼: 選擇全部
text/plain;
-----[ REPLACE WITH ]------------------
代碼: 選擇全部
text/html;
-----[ SAVE/CLOSE ALL FILES ]---------
不過還必須到:
languages/xxxxx/email/xxxxx.tpl
將所有的檔案都做一些更動:
例如換行要使用<br />
連結也必須改成:
代碼: 選擇全部
<a href="{XXX}">{XXX}</a>
原本的為:
代碼: 選擇全部
Charset: iso-8859-7
{MESSAGE}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The above is an email sent to you by an administrator of "{SITENAME}". If this message is spam, contains abusive or other comments you find offensive please contact the webmaster of the board at the following address:
{BOARD_EMAIL}
Include this full email (particularly the headers).
要改成:
代碼: 選擇全部
Charset: iso-8859-7
{MESSAGE}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The above is an email sent to you by an administrator of "{SITENAME}". If this message is spam, contains abusive or other comments you find offensive please contact the webmaster of the board at the following address:
<a href="mailto:{BOARD_EMAIL}">{BOARD_EMAIL}</a> <br />
Include this full email (particularly the headers).
這樣有興趣的人就可以把通知信.註冊信改的很漂亮囉!!
不過......
我的亂碼問題一樣沒有解決=.=lll (因為寄出的郵件還是一樣用UTF-8編碼)
開始考慮用"衝乾"的....加上iframe.............