Script PERL

Script PERL - Programmation

Marsh Posté le 13-01-2002 à 01:16:50    

Hello,
 
Je cherche un script en Perl permettant d'envoyer un mail via une page web....
 
Merci  
:hello:


---------------
WoIP - Video and Voice over IP -  http://www.woip.net/
Reply

Marsh Posté le 13-01-2002 à 01:16:50   

Reply

Marsh Posté le 13-01-2002 à 01:20:28    

:hello:
cherche sur le net yen a plein,
sinon c vite ecri :D


---------------
Tout à commencé par un rêve...
Reply

Marsh Posté le 13-01-2002 à 01:31:46    

voici une fonction écris en Perl ki envoi un mail tester sous Linux car sendmail pas essayer sous Windows,
 
$corp contient le corp du mail
@tete estun tableu ki contient
$tete[0] = email de l'emetteur
$tete[1] = email du destinataire
$tete[2] = sujet du mail
 
ensuite tu peu l'améliorer ebn ajoutant une adresse de retour si le mail du destinaire n'est pas bonne .....
a toi de chercher :D
 
sub envoimail {
 my ( $corps ) = shift;
        my ( @tete ) = shift;
 
open(SENDMAIL, "|/usr/sbin/sendmail -oi -t -odq" ) or die "fork impossible pour SendMail : $!\n";
print SENDMAIL <<"EOF_MAIL";
From: $tete[0]  
To: $tete[1]
Subject: $tete[2]
 
$corps
 
EOF_MAIL
 
close(SENDMAIL) or warn "Sendmail ne s'est pas fermé correctement\n";
}


---------------
Tout à commencé par un rêve...
Reply

Marsh Posté le 13-01-2002 à 16:39:32    

Marchi beacoup 8-)


---------------
WoIP - Video and Voice over IP -  http://www.woip.net/
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed