You should format the email message content first, like this:
$msgContent = "Name: ". $values['name'] ."\n";
$msgContent .= "Address: ". $values['address'] ."\n";

Then you should send a this content, like this:
mail('em...@address.com', 'Subject', $msgContent, "From...);

b.


On 20 September 2010 00:00, Joe Jackson <priory...@googlemail.com> wrote:
> Hi
>
> Sorry for the simple question but I am trying to get my head around PHP.  I
> have a sample PHP script that I am trying to use to send a php powered email
> message.  The snippet of code is shown below....
>
>    mail('em...@address.com', 'Subject', $values['message'], "From:
> \"{$values['name']}\" <{$values['emailaddress']}>");
>
> This works fine, but how can I add in other fields to the email that is
> recieved?
>
> For example in the form there are fields called, 'emailaddress',
> 'telephone', 'address' and 'name' which I need to add into the form along
> with the message field
>
> Also with the formatting how can I change the format of the email to
>
> Name: $values['name'],
> Address: etc
> Message:
>
> TIA
>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to