Jump to content
aelius

1300 accounturi hotmail

Recommended Posts

Guest Kovalski
ce aplicatii de mass email recomandati pt colectia asta?

AMS sau asta

#!/usr/bin/perl

$SUBJ="Aici scrii subiectul la mesaj";
$MSG="mesaj.txt";
$USERS="mail.txt";

open(IN,$USERS);

$id=12345;
while(chop($line=<IN>)){
open(SM,"|/usr/sbin/sendmail $line");
print(SM "To: $line\n");
print(SM "Subject: $SUBJ\n");
print(SM "Message-ID: <".time().".$id.qmail\sloboz.com>\n");
print(SM "From: \"Numele pizdii\" <user\@site.com>\n");
print("Message sent to $line\n");
print(SM "Content-Type: text/html\n");
open(FILE,$MSG);
while($line=<FILE>){
print(SM $line);
}
close(FILE);
close(SM);
$id++;
}

close(IN);

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...