I am Searching Emailer plugin -
scott1 - 06.11.2010
Hi,
long time i am searching on ****** and on samp's forum, but all link are dead.
I am searching an emaler plugin for pawn for linux and windows.
Tahnk you
Re: I am Searching Emailer plugin -
Myk3l - 06.11.2010
Send me posts links with links are dead please.
FR : Si t'as pas compris
Envoies moi les liens des post avec les liens deads, je vais essayer de contacter leurs auteurs
Re: I am Searching Emailer plugin -
Myk3l - 06.11.2010
EDIT :
I think this is an emailer :
http://forum.sa-mp.com/showthread.ph...t=email+plugin but is in russian langage

PME.inc :
http://solidfiles.com/d/411f7675d0b2...d13dea9f4ea64/ (Just the email include)
pme_primer.zip :
http://solidfiles.com/d/30f9a9e49fbf...6b1f37b79838a/ (Contain the pawno directory without PME include and the filterscript

)
Ciao !
(FR : Regarde le post, enfin traduit-le si tu veux y comprendre quelque chose mais j'ai vite fais regardй et les deux autres liens c'est les sources de je ne sais quoi
Re: I am Searching Emailer plugin -
Scenario - 06.11.2010
I know that "lolumadd" released something not to long ago where you could send emails from your SA-MP server.
This is the English part of the forum, so only speak English here!
Re : I am Searching Emailer plugin -
Myk3l - 06.11.2010
Yes
You have good memory :P
Link :
https://sampforum.blast.hk/showthread.php?tid=182109
EDIT : Links are dead too, so I've contact the member.
Re: I am Searching Emailer plugin -
scott1 - 06.11.2010
Quote:
Originally Posted by Myk3l
|
I found this one, but its only for windows.
I need an linux one
Re: I am Searching Emailer plugin -
Cameltoe - 07.11.2010
Quote:
Originally Posted by scott1
I found this one, but its only for windows.
I need an linux one
|
Pretty sure you could use the http functions, though iv'e never worked with them at all.. so i can't help you.
Re: I am Searching Emailer plugin -
Sergei - 07.11.2010
You can easily make yourself one using HTTP function.
AW: I am Searching Emailer plugin -
Arrows73 - 07.11.2010
You could use the socks plugin (
https://sampforum.blast.hk/showthread.php?tid=171598) to connect to a SMTP Server
Re: I am Searching Emailer plugin -
scott1 - 07.11.2010
SOrry but i don't know what socks means
Re: I am Searching Emailer plugin -
Cameltoe - 07.11.2010
https://sampforum.blast.hk/showthread.php?tid=188393 - Email include made by me. Nothing 'WOW' about it, just the simplicity.
Re: I am Searching Emailer plugin -
Myk3l - 07.11.2010
Good fs

For windows plugin ask the creator for compile a linux version !
Re: I am Searching Emailer plugin -
Killerkid - 07.11.2010
Here is a email plugin I made awhile ago:
http://www.mediafire.com/file/5mdvnnls60alngf/mail.zip
Example sending a email with
gmx.com:
pawn Code:
forward SendMailGMX(to[], from[], subject[], message[], html, username[], password[]);
public SendMailGMX(to[], from[], subject[], message[], html, username[], password[])
{
SendMail(to, from, subject, message, "smtp.gmx.com", 25, html, true, username, password, 1);
}
Re: I am Searching Emailer plugin -
scott1 - 07.11.2010
Thank you Cameltoe, but could uou explain me what
MailResponse(index, response_code, data[])
use for?
Re: I am Searching Emailer plugin -
scott1 - 07.11.2010
Quote:
Originally Posted by Cameltoe
|
So i tried yours
stock SendMail(reciever[], sender[], subject[], corps[])
{
new string[128];
format(string, sizeof(string), "wcrp.net/mdp.php?sender=%s&reciever=%s&subject=%s&message=% s",sender,reciever,subject,corps);
HTTP(1, HTTP_GET, string, "", "MailResponse");
}
if(strcmp(cmd, "/test", true) == 0)
{
format(string,sizeof(string),"Mot de passe : %s",JoueurInfos[playerid][jMdp]);
SendMail("***@wcrp.net", "***@hotmail.fr", "Mot de passe oubliй", string);
return 1;
}
its doesent work
But when i go on ****** and trie
wcrp.net/mdp.php?sender=***@wcrp.net&reciever=***@hotmail.f r&subject=test&message=test
It s working
Re: I am Searching Emailer plugin -
Karlip - 07.11.2010
scott1, you might want to check your inbox.
Re: I am Searching Emailer plugin -
scott1 - 07.11.2010
I Checked, 1min ago i receive 193mail with my server.
Is there any return 1; i forgot?
Re: I am Searching Emailer plugin -
IJzerenRita - 07.11.2010
Do you realize you have just made public a link for people to spam you and others?
Re: I am Searching Emailer plugin -
scott1 - 07.11.2010
Edited.
I was only mail send by server
Re: I am Searching Emailer plugin -
scott1 - 11.11.2010
up ?
Any solution?