使用ActionMaile发送邮件
更改config目录下的配置文件environment.rb 在最下面追加一段:
ActionMailer::Base.delivery_method = :smtp
#以简单邮件传送协议发送邮件
ActionMailer::Base.default_charset = "GBK"
#设置邮件的默认编码为国标码否则发送的邮件主题可能会乱码
ActionMailer::Base.server_settings = {
:address => "192.168.1.110",
:port => 25,
:domain => "xxx.com",
:authentication => :login,
:user_name => "xxx",
:password => "xxx",
}
1、:address => and :port => 决定你将使用的SMTP的地址和端口。这些缺省值分别为localhost和25。
2、:domain => 当识别自己是服务器时 mailer应该使用的域名。这是对HELO(因为HELO是命令客户端发送服务来启动一个连接)域的调用。你通常应该使用顶级域名机制来发送e-mail,但这依赖于你的SMTP服务的设置(some don’t check, and some check to try to reduce spam and socalled open-relay issues)
3、:user_name => and :password => 如果:authentication被设置则要求有此。
4、:authentication => :plain,:login,或:cram_md中的一个。你的服务器管理员将帮助选择正确的选项。当前没使用TLS(SSL)来从Rails连接邮件服务器的方式。这个参数应该被忽略,如果你的服务器不要求确认。
创建一个mailer的models
class OrderMailer < ActionMailer::Base
def signup(domain, sent_at = Time.now)
@subject = 'Welcome to Beast'
@body = "hello world"
@recipients = "yyy@yyy.com"
@from = 'yyy@yyy.com'
@sent_on = sent_at
@headers = {}
end
end
@subject:邮件标题
@body:邮件正文可以使用html标签但需要设置参考下面
@recipients:收件人可以接收数组进行群发
多人发送:@recipients = [ "1@a.com","2@b.com"]
@from:发件人
@sent_on:用于设置邮件 Date: header的Time 对象
@headers:一个header name/value 对的哈希望表,用于添加任意header行给邮件
如:@headers["Organization"] = "Pragmatic Programmers, LLC"
既要使用HTML格式发送邮件又要增加附件的话,需要在model里就对content-type进行设置 @content-type=”text/html”
创建一个controller 用于发送邮件
def send_mailer
email = OrderMailer.deliver_signup(request.host_with_port)
Puts email.encoded #邮件内容打印
#email = OrderMailer.create_signup(request.host_with_port)
#email.set_content_type("text/html") 可在模型中设置
#OrderMailer.deliver(email)
#发送HTML格式的邮件的设置
end
发送HTML模板邮件
在views中创建一个模板:_mail_content.rhtml
<html>
……
</html>
model中的mailer类改成如下:
def signup(domain,content,sent_at = Time.now)
@subject = "xxx"
@body = content
@recipients = "xxx@xxx.com"
@from = 'xxx@xxx.com'
@sent_on = sent_at
@headers = {}
end
controller中更改发送方法:
def send_mail
content =
render_to_string :partial=>" mail_content "
email = OrderMailer.create_signup(request.host_with_port,content)
email.set_content_type("text/html")
OrderMailer.deliver(email)
render :text=>"发送成功"
end
render_to_string方法返回的是String 与render不同的是它返回后不会发送给客户端。
发送附件
修改model中的mailer类,如下:
def signup(domain,content,sent_at = Time.now)
@subject = "xxx"
@body = content
@recipients = "xxx@xxx.com"
@from = 'xxx@xxx.com'
@sent_on = sent_at
@headers = {}
@data = ""
File.open("D:\\Tools\\FastAIT.rar", "rb") { |fp|
@data<<fp.read()
}
#参数的含义rb表示只读并且以二进制方式创建一个file对象
#不写r会出现丢失数据的问题,发送的附件也就被破坏了
``r''
|
Read-only, starts at beginning of file (default mode).
只读,清除原有内容(默认方式)
|
``r+''
|
Read-write, starts at beginning of file.
读写,清除原有内容
|
``w''
|
Write-only, truncates existing file to zero length or creates a new file for writing.
只写,创建一个新的文件覆盖旧的
|
``w+''
|
Read-write, truncates existing file to zero length or creates a new file for reading and writing.
读写,创建一个新的文件覆盖旧的
|
``a''
|
Write-only, starts at end of file if file exists, otherwise creates a new file for writing.
只写,追加
|
``a+''
|
Read-write, starts at end of file if file exists, otherwise creates a new file for reading and writing.
读写,追加
|
``b''
|
(DOS/Windows only) Binary file mode (may appear with any of the key letters listed above).
二进制模式
|
attachment :content_type => "application/rar",
:filename => "FastAIT.rar" ,
:body => @data
end
邮件附件的content_type(内容类型表)
".asf" ContentType = "video/x-ms-asf"
".avi" ContentType = "video/avi"
".doc" ContentType = "application/msword"
".zip" ContentType = "application/zip"
".xls" ContentType = "application/vnd.ms-excel"
".gif" ContentType = "image/gif"
".jpg", "jpeg" ContentType = "image/jpeg"
".wav" ContentType = "audio/wav"
".mp3" ContentType = "audio/mpeg3"
".mpg", "mpeg" ContentType = "video/mpeg"
".rtf" ContentType = "application/rtf"
".htm", "html" ContentType = "text/html"
".txt" ContentType = "text/plain"
".pdf" ContentType = "application/pdf"
其他 ContentType = "application/octet-stream"
分享到:
- 2006-12-26 09:32
- 浏览 3598
- 评论(2)
- 论坛回复 / 浏览 (1 / 5576)
- 查看更多
相关推荐
labview程序代码参考学习使用,希望对你有所帮助。
毕设和企业适用springboot生鲜鲜花类及数据处理平台源码+论文+视频.zip
毕设和企业适用springboot企业数据智能分析平台类及汽车管理平台源码+论文+视频
毕设和企业适用springboot社区物业类及企业创新研发平台源码+论文+视频
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Floating Text Example</title> <style> .floating-text { font-size: 24px; position: relative; animation: float 3s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } } </style> </head> <body> <div class="floating-text">Hello, I'm floating!</div> <script> document.addEventListener('DOMContentLoaded', function() {
毕设和企业适用springboot社交媒体分析平台类及智慧医疗管理平台源码+论文+视频
毕设和企业适用springboot生鲜鲜花类及餐饮管理平台源码+论文+视频
毕设和企业适用springboot人工智能客服系统类及用户行为分析平台源码+论文+视频
毕设和企业适用springboot全渠道电商平台类及个性化广告平台源码+论文+视频
毕设和企业适用springboot社交互动平台类及线上图书馆源码+论文+视频
毕设和企业适用springboot企业知识管理平台类及供应链优化平台源码+论文+视频
毕设和企业适用springboot企业健康管理平台类及数据处理平台源码+论文+视频.zip
内容概要:本文档是一份面向初学者的详细指南,重点介绍如何利用Vue.js 2.0快速创建和运行简单的Todo List应用。首先指导安装必需的Node.js、npm/yarn等环境准备,接着通过Vue CLI工具生成新的Vue项目,再详细介绍项目目录和组件的构建方式。最后提供了具体的方法实现添加和删除待办事项,并指导如何使用命令启动应用,查看结果。 适合人群:具备基础Web开发技能的前端开发新手,尤其是对Vue框架感兴趣的学习者。 使用场景及目标:作为初学者入门级的学习资料,本文档的目标是让读者能够在最短时间内掌握Vue.js的基础概念和技术栈的应用方式,以便日后可以独立地构建更加复杂的Vue应用。 其他说明:除了学习如何构建应用程序之外,本文档还涵盖了Vue的基本语法和数据绑定、事件处理机制等重要概念,对于理解Vue框架的工作原理十分有帮助。
毕设和企业适用springboot企业健康管理平台类及智能化系统源码+论文+视频.zip
毕设和企业适用springboot企业健康管理平台类及远程医疗平台源码+论文+视频.zip
毕设和企业适用springboot数据可视化类及数据智能化平台源码+论文+视频
毕设和企业适用springboot生鲜鲜花类及用户体验优化平台源码+论文+视频.zip
毕设和企业适用springboot人工智能客服系统类及虚拟银行平台源码+论文+视频
毕设和企业适用springboot社交应用平台类及云计算资源管理平台源码+论文+视频
毕设和企业适用springboot企业数据监控平台类及线上图书馆源码+论文+视频