Hi I want know how send mail , 1000 mail , because i made a mail bomber
help me please 1000 mail or +
im turkish and i speak english sometime
Hi I want know how send mail , 1000 mail , because i made a mail bomber
help me please 1000 mail or +
im turkish and i speak english sometime
Well first of all, you would need to learn about Sockets. You would then need to make a peice of script that would connect to a SMTP server such as hotmail, login, then make a loop that would send 1000 emails.
can we with " for to do " command ?
var
i , b : integer;
begin
b:=strtoint(edit1.text);
for i:=1 to b do
begin
...............................
................................
...............................
end;
end;
end.
if we can , show our codes please
yes or you can do something like,
var
i , b, c : integer;
begin
b:=strtoint(edit1.text);
c := 0;
while ((c <= b) and (Bombing = true)) do //Loop until b emails have been sent and bombing = true
Begin
...............................
...............................
...............................
if SendEmail(... )
begin
c := c + 1;
end;
end;
end;
end.
can you do a file with this code for download please
and Thank You![]()
I never was to fond of using email as a form of transmitting a file etc.. But I have seen units on the net used for delphi like SMPT.pas etc which is on trojanfrance. Sorry you expect me to just code some snippet for you. I normally would but thats asking a little too much since sending an email isn't something you just 'code up real quick' without having the right info and or doing some research which I am not prepared to do at the benefit of nothing.
i have made one these are simple projects now your main concern is the SMTP then your well away
There are currently 1 users browsing this thread. (0 members and 1 guests)