Email help
#1

I making email sistem in ravens gamemode and i have problem
when email sending this showing me in server log and email don't send

Код:
<?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( ),
         )
      )
   );
?>
Reply


Messages In This Thread
Email help - by osman2571 - 13.10.2014, 20:04
Re: Email help - by osman2571 - 14.10.2014, 10:11
Re: Email help - by osman2571 - 16.10.2014, 14:01
Re: Email help - by thefatshizms - 16.10.2014, 14:04
Re: Email help - by osman2571 - 16.10.2014, 14:58

Forum Jump:


Users browsing this thread: 1 Guest(s)