本文整理汇总了PHP中mail::setSubject方法的典型用法代码示例。如果您正苦于以下问题:PHP mail::setSubject方法的具体用法?PHP mail::setSubject怎么用?PHP mail::setSubject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mail
的用法示例。
在下文中一共展示了mail::setSubject方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Getincludefun
if ($_POST['username'] != '' && $_POST['usermail'] != '') {
$sql_login = $GETSQL->fSql("uid,userpwd,mail", "`{$ODBC['tablepre']}members`", "`username`='{$_POST['username']}' AND `mail`='{$_POST['usermail']}'", "", "", "", "U_B");
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());