When set: HTML YES -> Username (forgot) Notification Email haven't line breaks. Because, Username (forgot) Notification Email-Text has "\n" in the language.php and the text is writing in one row.
When set: HTML NO -> don't use "\n" and/or "\r" in the Formfield for Registrations and Welcome Email in the Admin Area Backend. There are write the "n" in the Email.
A solution for a Update-Fix:
Replace all "\n" and "\r" and "\r\n" in the language.php with normal Escape Key row.
Example:
with "\n":
Code:
'UE_USERNAMEREMINDER_MSG' => 'Hello,\nA username reminder has been requested for your %s account.\n\nYour username is: %s\n\nTo log in to your account, click on the link below:\n%s\n\nThank you.\n',
without "\n":
Code:
'UE_USERNAMEREMINDER_MSG' => 'Hello,
A username reminder has been requested for your %s account.
Your username is: %s
To log in to your account, click on the link below:
%s
Thank you.
',
PS: OFFTOPIC
For the [ code ]-window in this forum is the CSS class not set. The window is to large in width.
set it:
.highlight {
width: 94%;
}