Jump to content

email line breaks


pauldreed

Recommended Posts

I have a php contact page form which sends enquiries to my email account and also a confirmation email to the sender, telling them that I will respond in due course.
This works great, but how can I introduce a line break/new paragraph into the automated email, so the email looks formatted and not just a long string of words??
[code]# send confirmation email
if($sendnotification == true) {
$notification_message = "Thank you for contacting $websitetitle, $sender_name. We have received your email and will be in touch shortly";
$notification_subject = "Thanks for your message to $websitetitle.";
mail($sender_email, $notification_subject, $notification_message, "From: $recipient");
            header('Location: http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'].'?success');
        }[/code]
Link to comment
https://forums.phpfreaks.com/topic/26762-email-line-breaks/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.