ruby写的使用smtp协议发送邮件

本文介绍了一个使用Ruby编写的简单脚本,该脚本能通过命令行参数配置接收者地址、邮件主题、邮件内容等信息,并利用Net::SMTP库连接到指定的SMTP服务器发送邮件。脚本还支持从文件读取邮件内容。
require 'net/smtp' require 'ftools' require 'getoptlong' $tomail="" $subject="" $content="" $filename="" $i=0 def help() puts "Usage:/nsendemail [option] [file]" puts "/t--to -t destination email" puts "/t--subject -s email subject" puts "/t--content -c email content" puts "/t--file -f email content in file,can't use with -c" exit 1 end opts=GetoptLong.new( ["--to","-t",GetoptLong::REQUIRED_ARGUMENT], ["--content","-c",GetoptLong::REQUIRED_ARGUMENT], ["--subject","-s",GetoptLong::REQUIRED_ARGUMENT], ["--file","-f",GetoptLong::REQUIRED_ARGUMENT], ["--help","-h",GetoptLong::NO_ARGUMENT]); opts.each do |optopt,optarg| #puts "options:#{optopt},arg #{optarg}" if("#{optopt}"=="-t"||"#{optopt}"=="--to") $tomail="#{optarg}" $i+=1 end if("#{optopt}"=="-f"||"#{optopt}"=="--file") $filename="#{optarg}" $i+=1 end if("#{optopt}"=="-c"||"#{optopt}"=="--content") $content="#{optarg}" $i+=1 end if("#{optopt}"=="-s"||"#{optopt}"=="--subject") $subject="#{optarg}" $i+=1 end if("#{optopt}"=="-h"||"#{optopt}"=="--help") help() end end if($i!=3) then help() end if($filename!="") then f=File.new("#{$filename}","r") $content=f.read f.close end msg="Subject: #{$subject}/n/n#{$content}/n" Net::SMTP.start('smtp.sina.com',25,'smtp.sina.com','你的sina邮箱账户','sina账户密码',:login) do |smtp| smtp.send_message(msg,'bornwin@sina.com',["#{$tomail}"]) end
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值