I am working on a module in a large remote project in Codeigniter
. My email function working only if I Change the below line
var $newline = "\n";
from libraries/Email.php
To
var $newline = "\r\n";
I changed this to avoid the MIME type error
. My question is Will this affect the other mails which are already working?
It is not possible for me to contact all the remote developers. Any help could be appreciated.