1

こんにちは、管理者が更新したSMTPサーバーを変更する必要があるCRMシステムがあります。ステータスが1が必要なSMTP設定を含むデータセットを返すテーブルがあります。問題は、SMTP設定をhtmlMimeMail.php(クラス)に送信した場合でも、ローカルホストのsmtpに中継されることです。コードは次のとおりです。

function sendEmail($txtFrom, $subject, $to, $cc = NULL, $bcc = NULL, $strHTML, $txtModel='')
    {
        $sql  = "SELECT * FROM smtp_server WHERE status='1'";
        $rstemp = $this->cn2->Execute($sql);
        while(!$rstemp->EOF)
        {
            $SMTPid = $rstemp->fields['id'];
            $SMTPServer = $rstemp->fields['server'];
            $SMTPPort = $rstemp->fields['port'];
            $SMTPusername=$rstemp->fields['user'];
            $SMTPpass=$rstemp->fields['pass'];
            $SMTPauth = $rstemp->fields['auth'];
            $rstemp->MoveNext();
        }
        $rstemp->Close();


        $fromEmail  = $txtFrom;
        $from       = $fromEmail;

        $mail = new htmlMimeMail();
        $mail->setTextCharset('utf-8');
        $mail->setHtmlCharset('utf-8');
        $mail->setHeadCharset('utf-8');
        $mail->setSMTPParams($SMTPServer, $SMTPPort,$SMTPid,base64_encode($SMTPusername),base64_encode($SMTPpass),$SMTPServer);         
        $mail->setReturnPath($fromEmail);
        $mail->setFrom($from);
        $mail->setSubject($subject);
        $mail->setHTML($strHTML);

        if(trim($txtModel) != '')
        {
            $file   = strtoupper($txtModel).".pdf";

            if(file_exists($this->dir.$file))
            {
                $attachment = $mail->getFile($this->dir.$file);
                $mail->addAttachment($attachment, $file, "application/pdf");
            }
        }

        if (!is_null($cc) && $cc != '') 
        {
            //$arrEmail = explode(",", $cc);
            $mail->setCc($cc);
            //unset($arrEmail);
        }

        $mail->setBcc($bcc.', sample@email.com');

        $arrEmail = explode(",", $to);      
        ini_set("SMTP",$SMTPServer);
        $result = $mail->send($arrEmail);

        return $result;
    }

コードに何かが欠けていますか?ini_setも追加しました

パラメータを受け取る関数は次のとおりです。

function setSMTPParams($host = null, $port = null, $auth = null, $user = null, $pass = null,$helo = null)
{
    if (!is_null($host)) $this->smtp_params['host'] = $host;
    if (!is_null($port)) $this->smtp_params['port'] = $port;
    if (!is_null($helo)) $this->smtp_params['helo'] = $helo;
    if($auth == 4){
        if (!is_null($auth)) $this->smtp_params['auth'] = true;
    }else{
        if (!is_null($auth)) $this->smtp_params['auth'] = false;
    }
    if (!is_null($user)) $this->smtp_params['user'] = $user;
    if (!is_null($pass)) $this->smtp_params['pass'] = $pass;
}
テーブル定義
________________________________________
id | server | port | user | pass | auth | status
________________________________________
1 | localhost | 25 | null | null | false | 0
4 | somesmtp@mail.com | 25 | user | pass | true | 1
________________________________________
4

1 に答える 1