Just took a quick look:
You can easily use something like:
Did not test this....
(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....
●
● My Sentora Demo ● My Github ● Auxio Github ●
● Zentora theme ● S-Type theme ● CstyleX theme ●
● flat-color-icons ● small-n-flat-icons ●
●
Sentora's development takes way too long, so i'm transitioning to HestiaCP.
● My Sentora Demo ● My Github ● Auxio Github ●
● Zentora theme ● S-Type theme ● CstyleX theme ●
● flat-color-icons ● small-n-flat-icons ●
●
Sentora's development takes way too long, so i'm transitioning to HestiaCP.