H
Hd Pwnz0r
require 'net/smtp'
puts "How many times do you want to bomb 'em?"
x = gets.to_i
puts "What's your gmail account?"
username = gets
puts "Password for that account?"
password=gets
message = <<MESSAGE_END
From: Private Person
To: A Test User
Subject: Test
This is a test e-mail message.
MESSAGE_END
Times_Sent = gets.to_i
Net::SMTP.start('smtp.gmail.com', 587, 'gmail.com',
username, password,
lain) do |smtp|
smtp.send_message message
'@gmail.com'
'@txt.att.net'
end
while Times_Sent < x
Times_Sent = Times_Sent + 1
end
puts "#{Times_Sent} sent successfully!"
This isn't wokring for some reason, it's supposed to send sms messages
to remind people of stuff, you can send them many times, but the
authentacation doesn't work. Help?
puts "How many times do you want to bomb 'em?"
x = gets.to_i
puts "What's your gmail account?"
username = gets
puts "Password for that account?"
password=gets
message = <<MESSAGE_END
From: Private Person
To: A Test User
Subject: Test
This is a test e-mail message.
MESSAGE_END
Times_Sent = gets.to_i
Net::SMTP.start('smtp.gmail.com', 587, 'gmail.com',
username, password,
smtp.send_message message
'@gmail.com'
'@txt.att.net'
end
while Times_Sent < x
Times_Sent = Times_Sent + 1
end
puts "#{Times_Sent} sent successfully!"
This isn't wokring for some reason, it's supposed to send sms messages
to remind people of stuff, you can send them many times, but the
authentacation doesn't work. Help?