Hey all...
Need a bit of help.
Can someone please tell me why this bit of code is invalid?
$company_name = "Users Company Name: \t$company_name\n";
$website_url = "Users Company Website: \t$website_url\n";
$customer_code = "My Customer Code Is: \t$customer_code\n";
$username = "My Nominated Username Is: \t$username\n";
$password = "My Nominated Password Is: \t$password\n";
$first_name = "My First Name Is: \t$first_name\n";
$last_name = "My Last Name Is: \t$last_name\n";
$email_address = "My E-Mail Address Is: \t$email_address\n";
$phone = "My Phone Number Is: \t$phone_number\n";
$fax = "My Fax Number Is: \t$fax_number\n";
$postal_address = "My Postal Address Is: \t$address\n";
$city = "The City i Live in is: \t$city\n";
$state = "My State Is: \t$state\n";
$postcode = "My Postcode is: \t$postcode\n";
$recipient = "myemail@myhost.com";
$subject = "I want to give you all my details";
mail( $recipient, $subject, $company_name, $website_url, $customer_code, $username, $password, $first_name, $last_name, $email_address, $phone, $fax, $postal_address, $city, $state, $postcode );
Also ... How to fix it would be nice 🙂