Sending email with gmail smtp with codeigniter email library

后端 未结 8 2352
情书的邮戳
情书的邮戳 2020-11-22 06:29
load->library(\'email\');
    }

    func         


        
8条回答
  •  闹比i
    闹比i (楼主)
    2020-11-22 07:01

    You need to enable SSL in your PHP config. Load up php.ini and find a line with the following:

    ;extension=php_openssl.dll

    Uncomment it. :D

    (by removing the semicolon from the statement)

    extension=php_openssl.dll

提交回复
热议问题