Codeigniter SMTP Email with Amazon SES

后端 未结 5 1928
天命终不由人
天命终不由人 2021-02-05 06:43

I think yesterday Amazon announced SMTP support for SES (Simple Email Service).

I tried to send SMTP email with Codeigniter with no luck.

I have a verified sende

5条回答
  •  孤城傲影
    2021-02-05 07:08

    I also needed to add the line

    $config['smtp_crypto']  = 'tls';
    

    to my config array

    this is supported by CI 2.1.0 and greater

提交回复
热议问题