5-1-2
寄信功能
您沒有觀看影片的權限
請先登入,登入後,確認您的權限後,即可觀看影片。
- 在
class\Tad_signup_data.php
加入一個 send()
函式:
//立即寄出
public static function send($title = "無標題", $content = "無內容", $email = "")
{
global $xoopsUser;
if (empty($email)) {
$email = $xoopsUser->email();
}
$xoopsMailer = xoops_getMailer();
$xoopsMailer->multimailer->ContentType = "text/html";
$xoopsMailer->addHeaders("MIME-Version: 1.0");
$header = '';
return $xoopsMailer->sendMail($email, $title, $content, $header);
}
link to https://github.com/tadlearn/tad_signup/commit/fb19774d1b6733431c58fa1e0dfb0f2d5ef38371 \