I have a 1.2.x ZC shop, and recently our orders emails started coming in double-spaced where they used to be single-spaced.
Can someone please advise me where I should look to see why this is happening??
Thank you, Tom
I have a 1.2.x ZC shop, and recently our orders emails started coming in double-spaced where they used to be single-spaced.
Can someone please advise me where I should look to see why this is happening??
Thank you, Tom
What font size have you set up?Originally Posted by tlyczko
Sorry, I forgot to say that it's TEXT email, not HTML email.
This didn't use to happen until early last week, then all our order emails started coming in double-spaced.
Thanks, Tom
[Edited] - Seem to be a hosting problem - according to the message below.
Looks like some problem has started to happen with your email server lately
http://discussions.apple.com/message...sageID=2568712
Check with the host
Message edited above superprg's message.
I will check with my hosting company after I try out the text changes suggested above.
This only started last week, before that everything was fine...
Thank you, Tom
Hello, TheOracle,
Sorry for being dense, did you edit out your suggestion about removing the /n/n from the file??
Which file name was it?? I would like to check that file to make sure it is working correctly...
Thank you, Tom
Before considering my modifications, I must say I have to agree with superprg's suggestion first. If your host denys the fact that some changes were actually made from their end, then - perhaps - I will consider it to PM the changes to you.
In zen\includes\functions\functions_email.php
----
// Build the email based on whether customer has selected HTML or TEXT, and whether we have supplied HTML or TEXT-only components
if (!zen_not_null($email_text)) {
$text = str_replace('<br[[:space:]]*/?[[:space:]]*>', "@CRLF", $block['EMAIL_MESSAGE_HTML']);
$text = str_replace('</p>', '</p>@CRLF', $text);
$text = htmlspecialchars(stripslashes(strip_tags($text)));
} else {
$text = strip_tags($email_text);
-----
Ver less probable that an extra /n would get added of a sudden in that code :)