0

私は CodeIgniter を使用しており、顧客向けに多数の電子メールを設定し、SMTP 経由で送信しています...現在、仕事の要件は、電子メールの送信に Sendinblue を使用することです...したがって、SMTP 資格情報を提供されたものに置き換えただけです。 Sendinblue によって... メールが送信されていません.. 助けてください

Older Code (メール送信時)

$config = array(
                'protocol' => 'smtp', // 'mail', 'sendmail', or 'smtp'
                'smtp_host' => smtp.example.com,
                'smtp_port' => 465,
                'smtp_user' => MY_USER,
                'smtp_pass' => '',

                'smtp_crypto' => 'ssl', //can be 'ssl' or 'tls' for example
                'mailtype' => 'html', //plaintext 'text' mails or 'html'
                'smtp_timeout' => '4000', //in seconds
                'charset' => 'iso-8859-1',
                'wordwrap' => TRUE
            );

SendinBlue SMTP の詳細 (メールは現在機能していません)

$config = array(
                'protocol' => 'smtp', // 'mail', 'sendmail', or 'smtp'
                'smtp_host' => smtp-relay.sendinblue.com,
                'smtp_port' => 587,
                'smtp_user' => MY_USER,
                'smtp_pass' => MY_PASS,

                'smtp_crypto' => 'ssl', //can be 'ssl' or 'tls' for example
                'mailtype' => 'html', //plaintext 'text' mails or 'html'
                'smtp_timeout' => '4000', //in seconds
                'charset' => 'iso-8859-1',
                'wordwrap' => TRUE
            );
4

1 に答える 1