View Single Post
  #4 (permalink)  
Old 10-01-2008, 05:48 PM
chrisJumbo's Avatar
chrisJumbo chrisJumbo is offline
WebProWorld Veteran
 
Join Date: Oct 2005
Location: California
Posts: 339
chrisJumbo RepRank 3chrisJumbo RepRank 3
Default Re: Email Inbox Error

$body is the string that contains the body or text of your message.

For us we concatenate various items we are asking the visitor to complete:

ie,


$body = $body . "Phone: " . $_POST['phone'] . PHP_EOL;
$body = $body . "Term: " . $_POST['term'] . PHP_EOL;
$body = $body . "Inv: " . $_POST['investment'] . PHP_EOL;
$body = $body . "Hear: " . $_POST['hear'] . PHP_EOL;


Hope that helps.
__________________
CD Rates | CD Rates Blog | Banking Online
Reply With Quote