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


PHP mail::setTo方法代碼示例

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


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

示例1: array

    $smarty->assign('config', array('title' => $config['title'] . "管理員入口", 'keywords' => $config['keywords'] . "管理員入口", 'description' => $config['description'] . "管理員入口"));
    $smarty->assign('regname', $_COOKIE['regname']);
    $smarty->assign('rentime', fmicrotime());
    $smarty->display("login.htm");
}
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("請查收您的郵箱");
開發者ID:holin,項目名稱:sstour,代碼行數:31,代碼來源:login.php

示例2: Getincludefun

    }
}
if ($option == 'sendpwd') {
    if ($_POST['update'] == 'update') {
        include_once Getincludefun("mail");
        //常用函數
        $sql_members = $GETSQL->fSql("uid,username,useremail", "`{$ODBC['tablepre']}members`", "`username`='{$_POST['username']}'", "", "", "", "U_B");
        if ($sql_members['useremail'] == $_POST['usermail']) {
            $newpwd = fHtmlcode();
            $GETSQL->fUpdate("`{$ODBC['tablepre']}members`", "`userpwd`='{$newpwd}'", "`uid`='{$sql_members['uid']}'");
            $mail = new mail();
            $mail->mailTo = $sql_members['useremail'];
            $mail->mailFrom = $config['mail'];
            $mail->mailSubject = $config['webname'];
            $mail->mailText = "您在" . $config['webname'] . "的用戶密碼更新為:{$newpwd}";
            $mail->setTo($sql_members['useremail']);
            //收件人
            $mail->setFrom($config['mail']);
            //發件人
            $mail->setSubject($config['webname']);
            //主題
            $mail->setText("您在" . $config['webname'] . "的用戶密碼更新為:{$newpwd}");
            //發送文本格式也可以是變量
            $mail->send();
            //發送郵件
            die(gb2utf8("發送密碼到你的郵箱成功,請到您的郵箱獲取密碼"));
        }
        die(gb2utf8("error 對不起您的郵箱地址不正確"));
    }
    $smarty->display("sendpwd.htm");
}
開發者ID:holin,項目名稱:sstour,代碼行數:31,代碼來源:login.php


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