25.03.2019, 14:24
(
Последний раз редактировалось qRazor; 25.03.2019 в 18:07.
)
I modified:
In this(i gave up on includes and I inserted the function in the gamemode):
Because in sendemail.php i use function $_GET. Now I get error 302 HTTP, how can I solve it?
The php script runs I tested it but only in game I get the error.
Function SendEmail:
EDIT: I replaced my web name with mydomain, mydomain.ro is just an example.
Код HTML:
HTTP(0, HTTP_POST, Link, "", "");
Код HTML:
HTTP(playerid, HTTP_GET, Link, "", "EmailDelivered");
The php script runs I tested it but only in game I get the error.
Function SendEmail:
Код HTML:
function SendMail(playerid, EmailTo[], Message[]) { new Link[500]; format(Link, sizeof(Link), "mydomain.ro/sendemail.php?code=44514&EmailTo=%s&Message=%s", EmailTo, Message); HTTP(playerid, HTTP_GET, Link, "", "EmailDelivered"); return 1; }