當前位置: 首頁>>代碼示例>>PHP>>正文


PHP mail::setFrom方法代碼示例

本文整理匯總了PHP中mail::setFrom方法的典型用法代碼示例。如果您正苦於以下問題:PHP mail::setFrom方法的具體用法?PHP mail::setFrom怎麽用?PHP mail::setFrom使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mail的用法示例。


在下文中一共展示了mail::setFrom方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Getincludefun

}
if ($option == 'sendpwd') {
    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'] . "找回密碼"));
開發者ID:holin,項目名稱:sstour,代碼行數:31,代碼來源:login.php


注:本文中的mail::setFrom方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。