Add line breaks in mail function php - php

I'd like to send email using mail function.
Want to add line breaks as follows.
$msg = 'aaaaa'.'\r\n'.'bbbbbb'.'\r\n';
$headers .= "Content-Type: text/plain; charset=\"utf-8\"\r\n";
$to = 'test#test.com';
mail($to,'Subject',$msg,$headers);
But not working.
How can I send email as follows.
aaaaa
bbbbbb

New line is "\n", not '\n' (double quotes instead of single-quotes).
$msg = 'aaaaa'."\n".'bbbbbb'."\n";
Explanation is here:
http://php.net/manual/en/language.types.string.php#language.types.string.syntax.double
If the string is enclosed in double-quotes ("), PHP will interpret more escape sequences for special characters

To add line break you need to add "\n", not '\n'

You may use html tags in your mail body like this(<br /> breaks to new-line) :
$message = '<html><body>';
$message .= '<h1>Hello, World!</h1><p>Hello<br />This is in a newline</p>';
$message .= '</body></html>';
If you want to send plain text then you may just use \n.
In your case :
$msg = "aaaaa \r\n bbbbbb \r\n";
And your headers :
$headers = "From: Name <info#name.com> \r\n";
$headers .= "MIME-Version: 1.0 \r\n";
$headers .= "Content-Type: text/html; charset=UTF-8 \r\n";
Note: In case of single quoted string,
To specify a literal backslash, double it (\). All other instances of
backslash will be treated as a literal backslash: this means that the
other escape sequences you might be used to, such as \r or \n, will be
output literally as specified rather than having any special meaning.

Related

\r\n showing in my email when there is a line break

I'm not sure what I am doing wrong here. In the emails, \r\n keeps showing every time there is a line break. What do I need to modify in this code to fix it.
public function sendSupportEmail($email, $name, $comments)
{
//Wait until Google Apps are configured to accept from this domain
//$to = "test#mail.com";
$to = "test#mail.com.com";
$subject = "Support: Support Inquiry";
//Headers
// To send HTML mail, you can set the Content-type header.
$autoHeaders = "MIME-Version: 1.0\r\n";
$autoHeaders .= "Content-type: text/html; charset=iso-88591\r\n";
$autoHeaders .= "From: Web Bot";
$autoHeaders .= "<webbot#mail.com>\r\n";
$autoHeaders .= "Reply-To: webbot#mail.com\r\n";
$autoHeaders .= "Return-Path: webbot#mail.com\r\n";
$autoHeaders .= "X-Mailer: PHP 5.x\r\n";
//Print the local date
$date = new DateTime('now', new DateTimeZone('America/Denver'));
$datePrint = $date->format('F j, Y, g:i a');
//Create Text Based Message Below
$message = "<h3>Support Inquiry sent on {$datePrint}</h3>";
$message .= "<b>Name:</b><br>{$name}<br><br>";
$message .= "<b>Email:</b><br><a href='mailto:{$email}'>{$name}</a><br><br>";
$message .= "<b>Comments:</b><p>{$comments}</p>";
//Send them the E-Mail
return mail($to, $subject, $message, $autoHeaders);
}
I had same issue, turns out using mysqli_real_escape_string was causing it.
For the headers ($autoHeaders), \r\n is the correct way to separate various fields. But the $comments itself needs to use the HTML <br>-tag to denote a line-break, because you're sending a HTML e-mail (see Content-Type).
You can use the nl2br function for that:
$message = "<h3>Support Inquiry sent on {$datePrint}</h3>";
$message .= "<b>Name:</b><br>{$name}<br><br>";
$message .= "<b>Email:</b><br><a href='mailto:{$email}'>{$name}</a><br><br>";
$message .= "<b>Comments:</b><p>{" . nl2br($comments) . "}</p>";
return mail($to, $subject, $message, $autoHeaders);
In addition you can use htmlentities() on $comments before nl2br to convert other characters to HTML entities (like € for € f.e.):
$message = "<h3>Support Inquiry sent on {$datePrint}</h3>";
$message .= "<b>Name:</b><br>{$name}<br><br>";
$message .= "<b>Email:</b><br><a href='mailto:{$email}'>{$name}</a><br><br>";
$message .= "<b>Comments:</b><p>{" . nl2br(htmlentities($comments)) . "}</p>";
return mail($to, $subject, $message, $autoHeaders);
See Ideone sample
\n\r codes are going to be invisible in an Email client, regardless of whether or not you are rendering HTML or Text-based email. Look at, for instance, the Source Code of this website, and that of Google. Anything that is on a new line, technically, has a \n\r at the end.
\n\r says, to the text renderer "Line-Feed, Carriage Return," which harks back to terminals, and essentially says "Cursor down, Return cursor to start of line," much like on a typewriter.
In straight Text documents, this behaves as you would expect. However, as HTML is a markup-language, there are language codes that do this instead, and inner line-feeds have no effect.
I say all of the above to point out one specific thing: If there are ACTUAL line-feeds and carriage returns in your HTML document, you would not see them, as they are not the actual text '\n\r', \n and \r are textual representations of control characters.
So, all of that said, why would you see these? If you actually had the text '\n\r' in the document, and not the control characters. This can happen a few ways, most notably, misunderstanding the difference between " and '. " interprets the text inside of it, expanding control characters, variable references, etc, while ' does not:
$foo = 'bar';
echo "$foo"; // 'bar'
echo '$foo'; // '$foo'
echo "\n"; // actual line-feed
echo '\n'; // the text '\n'
See here for an example.
It is my guess that the actual contents of $comments contains the actual text '\n\r' and not the Line-feed + Carriage Return control characters. Either the user is actually entering the characters '\n\r' or you are inserting them somewhere. Look in your code and be sure you are using double-quotes anywhere you are trying to use control characters.
While I suggest cleaning your code to ensure that you are not inserting the text "\n\r" yourself, if it is actually the USER inserting these characters, you can clean them using this method.

PHP Mail function shows \r\n in message instead of CRLF

I'm using the PHP Mail function to send an email and the message has several lines which I've delimited with \r\n, however when the email arrives it contains \r\n in the message instead of starting each row on a new line.
$subject = 'Activation';
$message = 'ActivationCode=' . $activationcode . '\r\nUserLimit=' . $row['userlimit'] . '\r\nCanNetwork=' . $row['canrunonnetwork'];
$headers = 'From: noreply#here.com';
mail('me#here.com', $subject, $message, $headers);
When the email arrives it looks like this:
ActivationCode=1234\r\nUserLimit=4\r\nCanNetwork=-1
whereas I'd expected it to look like this:
ActivationCode=1234
UserLimit=4
CanNetwork=-1
Change your string delimiter to double quotes.
In PHP strings delimited with ' are literal, strings delimited with " are interpreted.
So these are equal:
'\r\n' === "\\r\\n"; // true
You should use double (") quotes instead if single ones. Variables and line endings etc. don't get expanded in single quotes.
So you code should be:
message = "ActivationCode=" . $activationcode . "\r\nUserLimit= ...etc.";

New lines (\r\n) are not working in email body

I am using PHP mail() function:
$to = 'AAAA <postmaster#xxx.xx>';
$subject = 'BBBB';
$message = "CCCC\r\nCCCC CCCC \r CCC \n CCC \r\n CCC \n\r CCCC";
$headers = 'From: DDD<postmaster#xxx.xx>' . "\r\n";
$headers .= "Content-Type: text/html; charset=\"UTF-8\"; format=flowed \r\n";
$headers .= "Mime-Version: 1.0 \r\n";
$headers .= "Content-Transfer-Encoding: quoted-printable \r\n";
mail($to, $subject, $message, $headers);
When I receive this email it looks like this:
CCCC CCCC CCCC CCC CCC CCC CCCC
I would expect something like this:
CCCC
CCCC CCCC CCC
CCC
CCC
CCCC
It works fine without Content-Type HTTP header. How can I make new lines and still use my "Content-Type" declaration?
You need to use a <br> because your Content-Type is text/html.
It works without the Content-Type header because then your e-mail will be interpreted as plain text. If you really want to use \n you should use Content-Type: text/plain but then you'll lose any markup.
Also check out similar question here.
If you are sending HTML email then use <BR> (or <BR />, or </BR>) as stated.
If you are sending a plain text email then use %0D%0A
\r = %0D (Ctrl+M = carriage return)
\n = %0A (Ctrl+A = line feed)
If you have an email link in your email,
EG
Send email
Then use %250D%250A
%25 = %
You need to use <br> instead of \r\n . For this you can use built in function call nl2br
So your code should be like this
$message = nl2br("CCCC\r\nCCCC CCCC \r CCC \n CCC \r\n CCC \n\r CCCC");
If you use content-type: text/html you need to put a <br> because your message will be threated like an html file.
But if you change your content-type to text/plain instead of text/html you will be able to use \r\n characters.
Using
<BR>
is not allways enough. MS Outlook 2007 will ignore this if you dont tell outlook that it is a selfclosing html tag by using
<BR />
You can add new line character in text/plain content type using %0A character code.
For example:
<a href="mailto:someone#example.com?subject=Hello%20again&body=HI%20%0AThis%20is%20a%20new%20line"/>
Here is the jsfiddle
This worked for me.
$message = nl2br("
===============================\r\n
www.domain.com \r\n
===============================\r\n
From: ".$from."\r\n
To: ".$to."\r\n
Subject: ".$subject."\r\n
Message: ".$_POST['form-message']);
' '
space was missing in my case, when a blank space added ' \r\n' started to work
Another thing use "", there is a difference between "\r\n" and '\r\n'.
"\n\r" produces 2 new lines while "\n","\r" & "\r\n" produce single lines if, in the Header, you use content-type: text/plain.
Beware: If you do the Following php code:
$message='ab<br>cd<br>e<br>f';
print $message.'<br><br>';
$message=str_replace('<br>',"\r\n",$message);
print $message;
you get the following in the Windows browser:
ab
cd
e
f
ab cd e f
and with content-type: text/plain you get the following in an email output;
ab
cd
e
f
for text/plain text mail in a mail function definitely use PHP_EOL constant, you can combine it with too for text/html text:
$messagePLAINTEXT="This is my message."
. PHP_EOL .
"This is a new line in plain text";
$messageHTML="This is my message."
. PHP_EOL . "<br/>" .
"This is a new line in html text, check line break in code view";
$messageHTML="This is my message."
. "<br/>" .
"This is a new line in html text, no line break in code view";
OP's problem was related with HTML coding. But if you are using plain text, please use "\n" and not "\r\n".
My personal use case: using mailx mailer, simply replacing "\r\n" into "\n" fixed my issue, related with wrong automatic Content-Type setting.
Wrong header:
User-Agent: Heirloom mailx 12.4 7/29/08
MIME-Version: 1.0
Content-Type: application/octet-stream
Content-Transfer-Encoding: base64
Correct header:
User-Agent: Heirloom mailx 12.4 7/29/08
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
I'm not saying that "application/octet-stream" and "base64" are always wrong/unwanted, but they where in my case.
$mail = new PHPMailer;
$mail->isSMTP();
$mail->isHTML(true);
Insert this code after working
all html tag like
<br> <p> in $mail->Body='Hello<br> how are you ?<b>';

PHP - mail() - single quotes vs double quotes

I have a strange problem with the PHP mail(); function.
Using it like this
$header = "MIME-Version: 1.0" . "\r\n";
$header .= "Content-type: text/html; charset=utf-8" . "\r\n";
$header .= "Content-Transfer-Encoding: quoted-printable" . "\r\n";
$header .= "Reply-To:" . $email . "\r\n";
$header .= "From: Kontaktformular <noreply#thomas-glaser-foto.de>" . "\r\n";
mail( "mail.me#mail.com", "Message from " . $name . " through your website!", $message, $header );
everything works as expected. The mail gets send, everything is encoded correctly and the subject is also ok.
But when I change the double quotes with single quotes like this:
$header = 'MIME-Version: 1.0' . '\r\n';
$header .= 'Content-type: text/html; charset=utf-8' . '\r\n';
$header .= 'Content-Transfer-Encoding: quoted-printable' . '\r\n';
$header .= 'Reply-To:' . $email . '\r\n';
$header .= 'From: Kontaktformular <noreply#thomas-glaser-foto.de>' . '\r\n';
mail( 'mail.me#mail.com', 'Message from ' . $name . ' through your website!', $message, $header );
The mail still gets send, but without the set subject. Instead, it is
www-data#domain.com
and the special characters are also destroyed. What is happening there?
Single quotes are for literal strings, no variables are replaced/expanded, and no escape sequences other than \' and \\ are respected. The way you've written your code you can leave the single-quotes as-is except you must have the line breaks double quoted as "\r\n".
Double quotes are needed to put in the special linebreak characters ("\r\n"). They are not treated as linebreaks when you use single quotes, instead they will be treated as literal text.
The PHP interpreter will evaluate material in double quotes, but it doesn't do so to single quotes. Because of this, the best practice is to only use double quotes when something needs to be evaluated (like a variable, when concatenation isn't possible, or special characters like line breaks).
Please read the manual:
http://php.net/manual/en/language.types.string.php
Single quoted
To specify a literal single quote, escape it with a backslash (). To
specify a literal backslash, double it (\). All other instances of
backslash will be treated as a literal backslash: this means that the
other escape sequences you might be used to, such as \r or \n, will be
output literally as specified rather than having any special meaning.

Problem headers mail php

I sending a message with this code below and works:
$headers = 'From: Online <'.$emailTo.'>\r\n';
$headers .= 'Reply-To: '.$emailTo.'\r\n';
$headers .= 'Return-Path: Online <'.$emailTo.'>\r\n';
$headers .= "Bcc: email#hotmail.com\r\n";
$headers .= "Bcc: email#gmail.com\r\n";
The problem is When I click in Reply on the email appear like this in the field to:
Online \r\nReply-To: email#server.com.au\r\nReturn-Path: Online \r\nBcc: email#hotmail.com
Any idea that can help me?
Cheers M
\r and \n must be enclosed in double quotes, in single quoted strings they are taken literally.

Categories