[Tutorial] Send an email from the game
#6

Hello i have problem because when i want to use this script i have error 500
My code
Код:
<?php 
if (isset($_GET['code']))//checks if request from SA:MP server contains code 
{ 
    $code = $_GET['code'];//Redefine just to look better :) 
    if($code == 44514)// Compare code from SA:MP request, a.k.a password to avoid spam or unauthorized requests 
    { 
        if (isset($_GET['msg']) && !empty($_GET['msg']))//Checks if request from SA:MP server contains messag you want to send 
        { 
            $message = $_GET['msg'];//Redefine just to look better :) 
            $message = str_replace("-"," ",$message);//Replace all - back to blank space as url cant contains blank spaces 
            mail("slonecznyots@gmail.com", "Email from server", $message,"From: \"SA:MP server\" <slonecznyots@gmail.com>\r\n" ."X-Mailer: PHP/" . phpversion());//Send an email, format: To,Subject,Message,From 
            echo "Email delivered";//Response message to SA:MP server, so server knows request was valid 
        } 
    } 
} 
?>
Help it is very important for me.

My site is imaginerp.xaa.pl
Reply


Messages In This Thread
Send an email from the game - by ikey07 - 14.06.2012, 20:47
Re: Send an email from the game - by FireCat - 14.06.2012, 20:56
Re: Send an email from the game - by Kirollos - 29.06.2012, 20:34
Re: Send an email from the game - by AndreT - 29.06.2012, 21:01
Re: Send an email from the game - by ikey07 - 01.07.2012, 11:03
Re: Send an email from the game - by Unista - 31.12.2012, 21:12
Re: Send an email from the game - by RedCrossER - 31.12.2012, 21:29
Re: Send an email from the game - by Matt - 12.02.2013, 23:59
Re: Send an email from the game - by freddy smyth - 23.02.2013, 04:09
Re: Send an email from the game - by DLR - 23.02.2013, 11:04

Forum Jump:


Users browsing this thread: 1 Guest(s)