![]() |
Emails sent to Hotmail are vanishing - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=11) +--- Thread: Emails sent to Hotmail are vanishing (/showthread.php?tid=69635) Pages:
1
2
|
RE: Emails sent to Hotmail are vanishing - Wouter60 - 12-29-2017 I tried sending emails with Gmail as smtp, but I get this error: Code: The following SMTP error was encountered: 145 Connection timed out My config/email.php file looks like this: PHP Code: $config['protocol'] = 'smtp'; RE: Emails sent to Hotmail are vanishing - Paradinight - 12-29-2017 @Wouter60 https://mxtoolbox.com/spf.aspx and https://mxtoolbox.com/blacklists.aspx RE: Emails sent to Hotmail are vanishing - Wouter60 - 12-29-2017 (12-28-2017, 04:15 PM)simon Wrote: First is to check the 'spammyness' of my emails with https://www.mail-tester.com My score is 8.6 RE: Emails sent to Hotmail are vanishing - Wouter60 - 12-29-2017 (12-29-2017, 05:03 AM)Paradinight Wrote: @Wouter60 My domain isn't on any blacklist. But in the toolbox, the mail server gives 1 error: DNS not found. Could that be the problem? RE: Emails sent to Hotmail are vanishing - jreklund - 12-29-2017 @Wouter60: You may need to enable "Unsafe applications" and change your config. Gmail are picky on how you send your new lines. https://support.google.com/accounts/answer/6010255?hl=en PHP Code: $config = [ RE: Emails sent to Hotmail are vanishing - Paradinight - 12-29-2017 (12-29-2017, 06:19 AM)Wouter60 Wrote:(12-29-2017, 05:03 AM)Paradinight Wrote: @Wouter60 fix the error and check again. |