Before sorting out your font size problem, let's sort out the code problem you have right there
Quote:
|
$messagetosender="$Thank you for your enquiry \n\rWe will endeavour to respond to your request within 48 hours \n\r\n\rXXX";
|
Why is there a $Thank at the beginning, $ should only be used to tell PHP that the single word attached is a variable - I doubt $Thank is a variable unless your English is poor.
Secondly, it's good practise when doing things like emails in php to split the lines, to tidy it up. Also, PHP is going to moan about the fact you have \n in there, so to get around this, all we have to simply do is escape them, notice the use of claiming the variable using '' not "":
PHP Code:
$messagetosender = 'Thank you for your enquiry ' . "\n\r" . 'We will
endeavour to respond to your request within
48 hours ' . "\n\r\n\r" . 'XXX';
I have no idea what the XXX bit at the end is for, but i assume you know 
|