
Originally Posted by
osaeed
The RMA email I receive in my admin email, the format is all screwed up. I installed your awesomeness addon, and I have gotten the customers email format working fine, with spaces between the paragraphs and etc.
In the customers email, i just added <br after <br on every line.
In the admin email, I get everything squished together. Its not spaced between one and another.
This is the default code, I added <br after the <br and everything disspeared in my email. the tag doesnt work. What code can I add to put a space between these lines?
// Prepare Text-only portion of message
$text_message = OFFICE_FROM . "\t" . $name . "<br />" .
OFFICE_EMAIL . "\t" . $email_address . "<br />" .
"Phone Number:" . "\t" .$telephone . "<br />" .
"Address:" . "\t" . $address . "<br />" .
"City:" . "\t" . $city . "<br />" .
"Post Code:" . "\t" . $postcode . "<br />" .
"Country:" . "\t" . $country . "<br />" .
"State:" . "\t" . $state . "<br />" .
"Order Number:" . "\t" . $order_number . "<br />" .
"Total Value:" . "\t" . $value . "<br />" .
"Item Number:" . "\t" . $item_number . "<br />" .
"Item Name:" . "\t" . $item_name . "<br />" .
"Action Requested:" . "\t" . $action . "<br />" .
'------------------------------------------------------' . "<br />" .
"Reason:" . "\t" . $reason . "<br />" .
'------------------------------------------------------' . "<br />" .
$extra_info['TEXT'];
This is the output when I get the admin email
From: mynameEmail: myemailPhone
Number: mynumberAddress: addressCity: floriedaPost
Code: 51234Country: romaniaState: MAOrder Number: 0Total Value: Item
Number: Item Name: sdsdfAction
Requested: Refund------------------------------------------------------Reason: testing
RMA email------------------------------------------------------Office Use
Only:
From: myname
Email: myemail
Telephone: 000-000-0000
IP Address: 0.0.0.0.0.0
Host Address: 0.0.0.0.0.0
Date and Time: Thu Jun 24 2010 15:49:10 EDT
How can or what do I add to put a space between the lines?
Thank you.