Sending email from localhost

前端 未结 5 1545
野性不改
野性不改 2020-11-30 13:04

I\'m using WampServer on Windows to test a site. I have a registration system where users get a confirmation email.

Is it possible to send emails from a localhost?<

5条回答
  •  鱼传尺愫
    2020-11-30 14:05

    It's quite simple. (Adapt syntax for your convenience)

    public $smtp = array(
        'transport' => 'Smtp',
        'from' => 'your_email@gmail.com',
        'host' => 'ssl://smtp.gmail.com',
        'port' => 465,
        'timeout' => 30,
        'username' => 'your_email@gmail.com',
        'password' => '*****'
    )
    

提交回复
热议问题