Hi,
I am using Mailto to send an order for a re-ordering system.
I am having trouble creating new lines, I am not sure where I should do this and how. I am using PHP to create the content of the mail, but it looks like this:
<a href="mailto:<?php echo $row_getlowstock['Supplier_Email']; ?>&subject=Digital Home Stock Re-Order - Model Number - <?php echo $row_getlowstock['Model_Number']; ?>&body=<?php echo $message; ?>
So the body part of the message is:
$message = "Please send us " . $stockneeded . " of the product named: " . $row_getlowstock['Item_Name'];
How do I create a new line in an email? <BR> is HTML and doens't work within the email, is there a special character set I should be using?
Thanks
sipps
I am using Mailto to send an order for a re-ordering system.
I am having trouble creating new lines, I am not sure where I should do this and how. I am using PHP to create the content of the mail, but it looks like this:
<a href="mailto:<?php echo $row_getlowstock['Supplier_Email']; ?>&subject=Digital Home Stock Re-Order - Model Number - <?php echo $row_getlowstock['Model_Number']; ?>&body=<?php echo $message; ?>
So the body part of the message is:
$message = "Please send us " . $stockneeded . " of the product named: " . $row_getlowstock['Item_Name'];
How do I create a new line in an email? <BR> is HTML and doens't work within the email, is there a special character set I should be using?
Thanks
sipps