(12-18-2016, 11:50 PM)Ron-e Wrote: Just took a quick look:
(12-18-2016, 11:20 PM)kamzo Wrote:Check how the mail() function is used.PHP Code:mail("quotes@mydomain.co.za", $name, $contact, $service, $budget, $company, $message, $from);
You can easily use something like:
PHP Code:$to = "quotes@mydomain.co.za";
$subject = "the subject";
$message2 = "name: $name \r\n".
"Contact: $contact \r\n".
"service: $service \r\n".
"budget: $budget \r\n".
"Company: $company \r\n".
"message: $message';
$headers = "From: server@mydomain.co.za \r\n" .
"X-Mailer: PHP/" . phpversion();
mail($to, $subject, $message2, $headers);
Did not test this....
Tried something similar before !!
And this as well, Didn't work
It seems odd as for my contact form it works perfectly
I think this issue is server side