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 = "
";
from libraries/Email.php
To
var $newline = "
";
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.
The Question has nothing to Do with codeigniter standards in conclusion of read below, and answer to your question should be NO it should not create problems for other mails that are already working You could test it across browsers
' ' writes a newline in UNIX while for Windows there is the two character sequence: ' '
There is a more detailed answer here Difference between and ?
For example, on Windows, writing the character ' ' actually outputs the two- character sequence ' ' (and when reading the file back, ' ' is translated back into a single ' ' character).