Forum Moderators: open
It occurs when the newsletter is viewed in Hotmail but the user has Outlook set as the default email client. When users click on the link to generate an unsubscribe email, Outlook opens a new message with the subject and body info but ignores the carriage returns in the body of the email (%0A%0A). If the carriage returns are excluded, the user will get an automated reply that the email was incorrectly formatted.
The email generated correctly in all other environments that we've tested. Does anyone have any thoughts on why the carriage return is being ignored?
Here's the code I'm using:
href="mailto:email@address.com?subject=One%20thing%20and%20Other%20thing&body=One%20Gthing%0A%0AOther%20thing"
The ampersand isn't 'escaped' with amp;
Instead of:
%20thing&body=One%20G
Try:
%20thing&body=One%20G
This might not fix your current problem, but it won't hurt :)