- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已将 Capistrano 设置为在部署我的 RoR (2.3.8) 应用程序后发送电子邮件。我有一个 config/cap_mailer.rb
文件基本上如下所示:
ActionMailer::Base.smtp_settings = {
:address => my,
:port => exchange,
:domain => server,
:authentication => settings,
:user_name => are,
:password => here
}
class CapMailer < ActionMailer::Base
def deploy_notification(cap_vars)
recipients cap_vars[:notify_emails]
from 'deploy@my.org'
subject "New app!"
body "Deployed application...blah blah blah"
end
end
deploy.rb
中文件,我有以下内容:
require 'config/cap_mailer.rb'
...
desc "Email recipients of deployment"
task :notify do
puts " * Sending notification email"
set :notify_emails, ["test1@my.org", "test2@my.org", etc.]
CapMailer.deliver_deploy_notification(self)
end
HEADER:
thread-index: AcyaZxlga08L9p35QYKJ22aiGG2zeA==
Content-Class: urn:content-classes:message
Importance: normal
Priority: normal
X-MimeOLE: Produced By ...
Received: from exchange.my.org ([ip address]) by ...; Thu, 3 Nov 2011 14:28:08 -0600
Date: Thu, 3 Nov 2011 14:28:08 -0600
From: deploy@my.org
To: test1@my.org,
test2@my.org,
test3@my.org,
test4@my.org,
test5@my.org,
test6@my.org,
test7@my.org
HEADER:
BODY:
test8@my.org
Message-Id:
<4eb2f95816341_135ff800c21ac130@my_box.local.tmail>
Subject: New app!
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Return-Path: deploy@my.org
X-OriginalArrivalTime: 03 Nov 2011 20:28:08.0494 (UTC)
FILETIME=[19601CE0:01CC9A67]
Deployed application...blah blah blah
BODY:
recipients ["test1@my.org", "test2@my.org", "test3@my.org", "test4@my.org",
"test5@my.org", "test6@my.org", "test7@my.org", "test8@my.org", "test9@my.org"]
最佳答案
第 7 个电子邮件地址后面没有逗号,这可能是问题所在。尝试将字符串传递给 recipients
, 喜欢 cap_vars[:notify_emails].join(',')
,没有换行符。
关于ruby-on-rails - ActionMailer - 限制收件人数量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8001731/
是否可以知道有多少人连接到一个 session ?我希望实现一种只允许两个人连接的机制,如果超过两个人,将显示一个警报。 最佳答案 当您获得 sessionConnected 事件时,您将获得一组连接
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 7 年前。 Improve this qu
Discord.js版本11.4.2 我如何打印所有行会名称及其成员数量? if (message.content === '!list') { message.channel.send("Che
Closed. This question is opinion-based。它当前不接受答案。 想改善这个问题吗?更新问题,以便editing this post用事实和引用来回答。 5年前关闭。
我正在使用由20个c3.8xlarge机器组成的ec2 hadoop群集,每台机器具有60 GB RAM和32个虚拟CPU。 在每台机器上,我都按https://docs.aws.amazon.com
我有一个包含以下数据的表 emp: EmpID EmpName MgrID 100 King NULL 101 Smith 100 102
我正在尝试创建一个无限循环的内容 slider 。我目前让它循环 3 个元素,但我想实现一个功能,让它始终循环而无需更新脚本。 我想知道的是,如果我可以创建一个 if 语句来表示“如果 x 大于 .q
我是一名优秀的程序员,十分优秀!