Emails sending through PHP application with Lotus Notes

Asked By 0 points N/A Posted on -
qa-featured

 I have a PHP application that sends email to the users. For most users this is just right.

However those users supported with Lotus Notes for their email client were receiving an email that show to start with the headers I enclose to the message. I have attempt changing the line ending but I can’t do it.

Has anybody had any idea why I am unable to change it? And how I can manage the email to work correctly?

Everything works with each other tested MTA, nothing works with notes.

SHARE
Answered By 10 points N/A #119035

Emails sending through PHP application with Lotus Notes

qa-featured

For most mail programs, you will notice that they have an option for view "raw message" or if not that they will have one for "original message" or something close to that.

Therefore you will need to see a big chunk of text with that have the headers at the top, and after that you will see a single blank line followed by the body. In some cases, you might also be able to see a bunch of MIME stuff in there as well. So in your case you will need to check and make sure that you do not have an extra new line before the X-Mailer header which may be responsible for causing the problem.

-Thompson Locker

Related Questions