Outputting Information via Email

The site is Instant-LegalAdvice.co.uk/Conveyancing.php

Currently the form is filled out by the customer and the details they enter are sent to them. I would also like to send them the quote.

$name = $_REQUEST[‘name’];
$email = $_REQUEST[‘email’];
$tel = $_REQUEST[‘telephone’];

$body .= “Hello” . $name . “

”;

It uses PHP Mailer

It looks a bit like that, how would you suggest I output the quote too?

Cheers

Sponsor our Newsletter | Privacy Policy | Terms of Service