In article <00be01c0b175$1cee4080$[EMAIL PROTECTED]>,
 [EMAIL PROTECTED] ("Wade DeWerff") wrote:

> is there a way to do this in a mail() ? I need to add the $Phone and $Email 
> variables too the $message, but I need to format it so that it is on a new 
> line in the email....I tried using <br> and /n, but it formats as text not 
> code function. 
> 
> 
> $message = $Info ."<br>". $Phone ."<br>". $Email;


"<br>" is used in hypertext markup language (HTML). Email (unless specially 
encoded--MIME headers, ugh!) does not use HTML.

"/n" is a slash followed by the letter n.

"\n" is a newline on *nix system (Unix, Linux, etc.).

"\r\n" is a Wintel linebreak.  It's also the standard for linebreaks within 
emails.

-- 
CC

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to