where can I set email function?
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
July 31, 2013 11:05pm
Subscribe [4]#1 / Jul 31, 2013 11:05pm
where can I set email function?
#2 / Aug 04, 2013 9:00am
What do you mean?
#3 / Aug 08, 2013 5:28am
which function do you want to set? “email reciver” you should fill every time but you can set signature youself.
#4 / Sep 30, 2013 10:04am
<?php
$to = '[email protected]';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: .(JavaScript must be enabled to view this email address)' . "\r\n" .
'Reply-To: .(JavaScript must be enabled to view this email address)' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>#5 / Oct 07, 2013 5:24am
Thank you very much