本文整理匯總了PHP中TikiMail::setTextCharset方法的典型用法代碼示例。如果您正苦於以下問題:PHP TikiMail::setTextCharset方法的具體用法?PHP TikiMail::setTextCharset怎麽用?PHP TikiMail::setTextCharset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TikiMail
的用法示例。
在下文中一共展示了TikiMail::setTextCharset方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: TikiMail
if ($acc['type'] == 'wiki-append' || $acc['type'] == 'wiki' && $method == "APPEND") {
$body = $info['data'] . $body;
} else {
$body = $body . $info['data'];
}
$tikilib->update_page($page, $body, "Updated from " . $acc["account"], $aux["sender"]["user"], '0.0.0.0', '');
$content .= "Page: {$page} has been updated";
}
}
mailin_check_attachments($output, $content, $page, $aux["sender"]["user"]);
} else {
$mail = new TikiMail();
$mail->setFrom($acc["account"]);
$c = $tikilib->get_preference("default_mail_charset", "utf8");
$mail->setHeadCharset($c);
$mail->setTextCharset($c);
$l = $tikilib->get_preference("language", "en");
$mail_data = $smarty->fetchLang($l, "mail/mailin_help_subject.tpl");
$mail->setSubject($mail_data);
$mail->setSMTPParams($acc["smtp"], $acc["smtpPort"], '', $acc["useAuth"], $acc["username"], $acc["pass"]);
$smarty->assign('subject', $output['header']['subject']);
$mail_data = $smarty->fetchLang($l, "mail/mailin_help.tpl");
$mail->setText($mail_data);
$res = $mail->send(array($email_from), 'mail');
}
}
}
//end if($cantUseMailIn)
// Remove the email from the pop3 server
$pop3->deleteMsg($i);
}