このスクリプトを使用すると、メッセージを入力して、それは新しい行にジャンプし、特定の単語があなたが取得を通じてユーザー入力を取得し、それが指定した文字列と同じであるかどうかを確認することができReturnキーはルビーで電子メールを送信しますが、メールを送信する代わりに新しい行にジャンプする方法
require 'mail'
require 'colorize'
options = { :address => "smtp.gmail.com",
:port => 587,
:user_name => '[email protected]',
:password => 'mypass',
:authentication => 'plain',
:enable_starttls_auto => true }
ail.defaults do
delivery_method :smtp, options
end
Mail.deliver do
to '[email protected]'
from '[email protected]'
subject 'hello'
puts "[!] IMPORTANT type 'SND' in full uppercase then PRESS ENTER to send the Email".yellow
puts"Enter Your Message Below".colorize(:light_blue)
print "Message > ".colorize(:light_blue) ##entering message body here
body gets ##sends the mail as soon as i hit enter
end
本当にありがとうございました:D –