25.10.2014, 19:30
I make in the ravens script email system
but I have problems with mailer.php I did the same as in this example https://sampforum.blast.hk/showthread.php?tid=197755 But when the script should send email to the server log I wrote this
how to fix
but I have problems with mailer.php I did the same as in this example https://sampforum.blast.hk/showthread.php?tid=197755 But when the script should send email to the server log I wrote this
Код:
<?php
ini_set( 'html_errors', false );
if ( empty( $_POST[ 't' ] ) || empty( $_POST[ 'f' ] ) || empty( $_POST[ 'n' ] ) || empty( $_POST[ 's' ] ) || empty( $_POST[ 'm' ] ) )
die( 'Error: Missing parameters.' );
mail(
$_POST[ 't' ],
utf8_encode( $_POST[ 's' ] ),
$_POST[ 'm' ],
implode(
"\r\n",
array
(
'From: "' . addslashes( $_POST[ 'f' ] ) . "\" <{$_POST[ 'n' ]}>",
"Reply-To: {$_POST['f']}",
"X-Mailer: PHP/" . phpversion( ),
)
)
);
?>
