The base code is as follows
Code: Select all
<?php
mail("me@myemail.com", $subject, $message, "From: PHPMailer\nReply-To: $from\nX-Mailer: PHP/" . phpversion());
?>so i changed my code to read as above and it still didnt work ??Using PHP with easymail
As you can see from the installation we have PHP setup to use our easymail system on the webserver.
You still use the mail() function but you need to send a "From" header including a valid email address.
EG.
mail ( "someone@somedomain.com" , "subject" , "message" , "From: server@easyspace.com" );
Please any help on this will be greatly appreciated as ive asked easyspace helpdesk 5 days ago !! and still no reply
(as you may have guessed im not exactly very good with PHP so forgive the stupidness of this question)