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
#2

BUMP
Reply
#3

BUMP !
Reply
#4

Where are you executing this? You said its showing you this in the server log... you should be running this via a web server.
Reply
#5

Yes i run this in web server
And script don't sent email to victim emails
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)