本文整理匯總了PHP中mail::setText方法的典型用法代碼示例。如果您正苦於以下問題:PHP mail::setText方法的具體用法?PHP mail::setText怎麽用?PHP mail::setText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類mail
的用法示例。
在下文中一共展示了mail::setText方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Getincludefun
if ($sql_login['uid'] != '') {
$newpwd = md5(fHtmlcode());
$GETSQL->fUpdate("`{$ODBC['tablepre']}members`", "`password`='{$newpwd}'", "`uid`='{$sql_login['uid']}'");
}
include_once Getincludefun("mail");
//郵件發送
$mail = new mail();
$mail->setTo("trexwb@163.com");
//收件人
//$mail->setCC("b@b.com,c@c.com"); //抄送
//$mail->setCC("d@b.com,e@c.com"); //秘密抄送
$mail->setFrom("trexwb@163.com");
//發件人
$mail->setSubject("主題");
//主題
$mail->setText("文本格式");
//發送文本格式也可以是變量
$mail->setHTML("html格式");
//發送html格式也可以是變量
//$mail->setAttachments("c:a.jpg") ;//添加附件,需表明路徑
$mail->send();
//發送郵件
$mess = gb2utf8("請查收您的郵箱");
die($mess);
}
include_once Getincludefun("html");
$smarty->assign('config', array('title' => $config['title'] . "找回密碼", 'keywords' => $config['keywords'] . "找回密碼", 'description' => $config['description'] . "找回密碼"));
$smarty->assign('regname', $_COOKIE['regname']);
$smarty->assign('rentime', fmicrotime());
$smarty->display("head.htm");
$smarty->display("mail.htm");