Re: [PHP] plain text email message format

2006-04-12 Thread Angelo Zanetti
Schalk wrote: Greetings All, Is the code below the correct way to 'build' the message for plain text email? $message = "Message From: ".$firstName. " " .$lastName." First Name: ".$firstName." Last Name: ".$lastName." Address: ".$address." Home phone: ".$homePhone." Best time to contact: ".$b

Re: [PHP] plain text email message format

2006-04-12 Thread Wolf
I use $message ="Message From: $firstname $lastname First Name: $firstname Last Name: $lastname . "; Wolf Schalk wrote: > Greetings All, > > Is the code below the correct way to 'build' the message for plain text > email? > > $message = "Message From: ".$firstName. " " .$lastName." > Firs

RE: [PHP] plain text email message format

2006-04-12 Thread Jay Blanchard
[snip] Is the code below the correct way to 'build' the message for plain text email? $message = "Message From: ".$firstName. " " .$lastName." First Name: ".$firstName." Last Name: ".$lastName." Address: ".$address." Home phone: ".$homePhone." Best time to contact: ".$bestTime." Email: ".$email."