help email system
#1

i try to create email system

how can i create file for each player

stock Mail(from[],to[],subject[],body[])
{
new string[256];
new File:file = fopen("EmailSend.txt", io_write);
fwrite(file,"date: todays-date\n");
format(string,sizeof(string),"to: %s\n",to);
fwrite(file,string);
format(string,sizeof(string),"subject: %s\n",subject);
fwrite(file,string);
format(string,sizeof(string),"from: %s\n\n",from);
fwrite(file,string);
fwrite(file,body);
fclose(file);
SendMail(from,to,subject,body);
return 1;
}
Reply
#2

I have released a system doing exactly what you want.

http://forum.sa-mp.com/index.php?topic=139411.0

Please leave a comment if youґre using it.
Reply
#3

Код:
stock Mail(from[],to[],subject[],body[])
{
  new string[256],filename[100];
  format(filename,sizeof filename,"%s.txt",to);
  new File:file = fopen(filename, io_write);
  fwrite(file,"date: todays-date\n");
  format(string,sizeof(string),"to: %s\n",to);
  fwrite(file,string);
  format(string,sizeof(string),"subject: %s\n",subject);
  fwrite(file,string);
  format(string,sizeof(string),"from: %s\n\n",from);
  fwrite(file,string);
  fwrite(file,body);
  fclose(file);
  SendMail(from,to,subject,body);
  return 1;
}
Reply
#4

how can i add cmd to write email and send?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)