guhgames

Untitled

Dec 5th, 2012
1,244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include <a_http>
  2.  
  3. #if !defined Function
  4. #define Function::%0(%1) %0(%1); public %0(%1)
  5. #endif
  6. Function::SendMail(Email[],Assunto[],Remetente[],Mensagem[])
  7. {
  8. new Link[1200];
  9. format(Link,sizeof(Link),"geradoresjfs.host22.com/SendEmail.php?Email=%s&Assunto=%s&From=%s&Mensagem=%s",Email,Assunto,Remetente,Mensagem);
  10. for(new c; c < strlen(Link)+1; c++)
  11. {
  12. if(Link[c] == ' ') Link[c] = '+';
  13. }
  14. HTTP(0, HTTP_POST, Link, "", "");
  15. return 1;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment