thinkphp 163 메일 보내기

4251 단어
 'THINK_EMAIL' => array(
        'SMTP_HOST'   => 'smtp.163.com', //SMTP 
        'SMTP_PORT'   => '465', //SMTP 
        'SMTP_USER'   => '8915077727', //SMTP 
        'SMTP_PASS'   => '766239p', //SMTP 
        'FROM_EMAIL'  => '[email protected]', // EMAIL
        'FROM_NAME'   => ' ', // 
        'REPLY_EMAIL' => '[email protected]', // EMAIL( EMAIL)
        'REPLY_NAME'  => ' ', // ( )
        'TO_EMAIL'   =>'[email protected]'
    ),


// /App/Common/Conf/config.php  

구성 파일 가져오기 및 보내기:
//  C('THINK_EMAIL');   $config['TO_EMAIL']
public function sendmail(){
    if($_POST['name'] == "" && $_POST['phone'] == "" && $_POST['email'] == "" && $_POST["content"] == ""){
    return $this->error(' , !!!');

    }

    $content=" :".$_POST['cname']."
:".$_POST['name']."
:".$_POST['phone']."
E-mail:".$_POST['email']."
:".$_POST['address']."
:".$_POST["content"]; if(IS_POST){ $config = C('THINK_EMAIL'); $return=think_send_mail($config['TO_EMAIL'],'admin'," ",$content); if($return==1){ $this->success(' , , !',U('Index/index')); } else{ $this->error(' , , 。'); } } else{ $this->error(' '); } } }

 
다음으로 전송:https://www.cnblogs.com/xiaohe520/articles/11225830.html

좋은 웹페이지 즐겨찾기