Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 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::SendRegisterMail(Email[])
  7. {
  8. new Link[1200];
  9. format(Link,sizeof(Link),"",Email);
  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
Advertisement