Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
想要使用 Griddler 在我的 rails 应用程序中上传附件等,但只希望将某个电子邮件地址转发到我的 rails 应用程序,这可能无法找到,并且可以选择使用文档
我不相信有来自工作流的 SendGrid 方面,但您总是可以在 Rails 应用程序中查看电子邮件对象中的 To 标记,看看它是否与您想要的电子邮件匹配。
class EmailProcessor def initialize(email) @email = email end def process if @email.to == 'special@email.com' # do something else # handle invalid email end end end