//Lets send some email to ppl /* recipients */ $to = "$_POST[MC_emailaddress]"; // note the comma /* subject */ $subject = "Thank you. You have added a shop to Pop2$_Country"; /* message */ $message = " You have added a shop to Pop2$_Country

Congratulations! You have added your shop to the Pop2$_Country website!

Please keep, print or archive this email so that you may refer back to it in the event you lose your Username or Password, have billing question's and for your records.

Your Account Details:

     
Username:   $username
Password:   $password
 
Invoice No.:

Paid by Credit Card using WorldPay, Transaction ID:

For services ordered on the www.Pop2$_Country.com website.

 
     
Total excluding VAT:   $curSymbol"; if($_POST[MC_totalVAT]!="0") $message .= $_POST[amount]-$_POST[MC_totalVAT]; else $message .= $_POST[amount]; $message .="
VAT @ 17.5%   $curSymbol$_POST[MC_totalVAT];
Total    $curSymbol$_POST[amount]

 

The Pop2world travel sites are part of POP2 Internet Limited Mailing address: PO Box 20, Colwyn Bay, Conwy, LL29 6ZD. UK registered company. UK VAT Registration number: 771 3268 26. Please contact POP2 Internet Limited if any email invoice received is unsatisfactory.


 

'; /* To send HTML mail, you can set the Content-type header. */ $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; /* additional headers */ $headers .= "From: Pop2$_Country \r\n"; $headers .= "Cc: pop2world@yahoo.com\r\n"; /* and now mail it */ mail($to, $subject, $message, $headers);