Quote:
Originally Posted by RealCop228
I keep getting the "Mailer script says: Error: Missing parameters" error...
This is my code:
pawn Код:
new szString[300], szString2[500]; format(szString, sizeof(szString), "Important: Your activation password for %s.", SERVER_NAME); format(szString, sizeof(szString), "Welcome to %s. \n This is your account activation password: %s \n You can come in-game and finish activating your account by entering this password. \n Please do not reply to this message, it will not be read.", GetName(playerid), szString3); SendMail(inputtext, "no-reply@realcop228.com", SERVER_NAME, szString, szString2);
Could someone tell me why this would be?
|
You're formatting "szString" twice, and haven't formatted szString2.
I doubt that'll be the problem though, just replace the include again with this current one.