网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 ecshop实现smtp发送邮件
内容
    这篇文章主要介绍了ecshop实现smtp发送邮件,需要的朋友可以参考下
    使用ECShop的smtp方式发送邮件时,在cls_smtp类文件中,执行到get_data方法中的语句:
    代码如下:
    $line = fgets($this->connection, 512);
    ;时,发生超时错误。
    注释掉该函数的执行,直接发送邮件,则返回错误ehlo command failed。
    但打印出链接数据时,确实连上了。
    之前用别的程序发送邮件也是可以正常发送的,于是重新发送函数,改用phpmailer发送邮件。
    代码如下:
    function smtp_mail($name, $email, $subject, $content, $type = 1, $notification=false) {
    /* 如果邮件编码不是EC_CHARSET,创建字符集转换对象,转换编码 */
    if ($GLOBALS['_CFG']['mail_charset'] != EC_CHARSET)
    {
    $name = ecs_iconv(EC_CHARSET, $GLOBALS['_CFG']['mail_charset'], $name);
    $subject = ecs_iconv(EC_CHARSET, $GLOBALS['_CFG']['mail_charset'], $subject);
    $content = ecs_iconv(EC_CHARSET, $GLOBALS['_CFG']['mail_charset'], $content);
    $shop_name = ecs_iconv(EC_CHARSET, $GLOBALS['_CFG']['mail_charset'], $GLOBALS['_CFG']['shop_name']);
    }
    $charset = $GLOBALS['_CFG']['mail_charset'];
    include_once ROOT_PATH . 'includes/phpmailer/class.phpmailer.php';
    $mail = new PHPMailer();
    $mail->From = $GLOBALS['_CFG']['smtp_user'];
    $mail->FromName = '云南***播有限公司';
    if ($GLOBALS['_CFG']['mail_service'] == 0) {
    $mail->isMail();
    } else {
    $mail->IsSMTP();
    $mail->Host = $GLOBALS['_CFG']['smtp_host'];
    $mail->Port = $GLOBALS['_CFG']['smtp_port'];
    $mail->SMTPAuth = !empty($GLOBALS['_CFG']['smtp_pass']);
    $mail->Username = $GLOBALS['_CFG']['smtp_user'];
    $mail->Password = $GLOBALS['_CFG']['smtp_pass'];
    }
    $mail->Encoding = "base64";
    //$mail->Priority = $this->priority;
    $mail->CharSet = $charset;
    $mail->IsHTML($type);
    $mail->Subject = $subject;
    $mail->Body = $content;
    $mail->Timeout = 30;
    $mail->SMTPDebug = false;
    $mail->ClearAddresses();
    $mail->AddAddress($email, $name);
    $mail->ConfirmReadingTo = $notification;
    $res = $mail->Send();
    if (!$res)
    {
    $GLOBALS['err']->add($mail->ErrorInfo);
    $GLOBALS['err']->add($GLOBALS['_LANG']['sendemail_false']);
    return false;
    }
    return true;
    }
    以上就是本文的全部内容了,希望小伙伴们能够喜欢。
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/14 1:49:19