所以我在我的wordpress自定義主題巫婆中使用了我的所有形式。這個功能是我的wordpress的functions.php,看起來像:功能是否一直執行?
function mail_utf8($to, $subject = '(No subject)', $message = '', $from , $header = '') {
$header_ = "From: $from" . "\r\n" . 'MIME-Version: 1.0' . "\r\n" . 'Content-type: text/plain; charset=UTF-8' . "\r\n";
mail($to, '=?UTF-8?B?'.base64_encode($subject).'?=', $message, $header_ . $header);
}
所以,問題是 - 這是否函數正在執行的時候,當一些刷新頁面上?或者只有當我打電話時才能執行該功能?
因爲我從主持人的按摩中獲得每小時超過郵件限額。當我刪除這個函數並以任何形式進行硬編碼時,一切都是正確的。
我想:
if(!empty($message)) {
function mail_utf8($to, $subject = '(No subject)', $message = '', $from , $header = '') {
$header_ = "From: $from" . "\r\n" . 'MIME-Version: 1.0' . "\r\n" . 'Content-type: text/plain; charset=UTF-8' . "\r\n";
mail($to, '=?UTF-8?B?'.base64_encode($subject).'?=', $message, $header_ . $header);
}
}
,但它沒有工作