php - codeigniter email keeps getting blocked -


Hello, I have a problem sending my script email. It has come to our attention that a spam blocking filter called barcakuda in my host And any email @ yahoo domain domain is blocked How can I see it?

This is my email code:

  $ config ['wordwrap'] = false; $ Config ['mailtype'] = 'html'; $ This- & gt; email-> Start ($ config); $ One = $ this- & gt; Load-> View ('cart / email', $ data, true); $ The- & gt; Email-> ($ Data ['email'], $ data ['fname']. '' $ Data ['lname']); $ This- & gt; email-> ('order@abc.ca '); $ This- & gt; Email-> Subject ('your order'); $ This- & gt; email-> Message ($ one); $ This- & gt; email-> Send (); Echo $ - THIS- & gt; Email-> Print_debugger ();    

If this is a hosting problem, then we can not do much about it . You can use a different and more reliable SMTP provider, such as Mandrill . It works great and has an extremely easy API.



Comments

Popular posts from this blog

python - Writing Greek in matplotlib labels, titles -

c# - LINQ to Entities does not recognize the method 'Int32 IndexOf(System.String, System.StringComparison)' method -

Pygame memory leak with transform.flip -