Codeigniter SMTP Unable to Connect

后端 未结 1 1812
长发绾君心
长发绾君心 2021-01-05 21:43

I\'m using Codeigniter 3 and have a simple contact form on my website. This contact form works perfectly on my localhost XAMPP environment, but not on my shared web hosting

相关标签:
1条回答
  • 2021-01-05 22:05

    i dont know if this would work in your case, but i have the same issue. it work on my local development using homestead but in hostgator its error. what i did to fix it, is i change the value of protocol to mail.

    try to change your code:

    $config['protocol']     = 'smtp';
    

    to this:

    $config['protocol']     = 'mail';
    
    0 讨论(0)
提交回复
热议问题