1

ive got a email setup to forward to mx.sendgrid.new (the sendgrid mail server) then with received emails sendgrid passes them to a specified page (as shown in the 2nd image of the tutorial im following)

http://nanceskitchen.com/2010/02/21/accept-incoming-emails-into-a-heroku-app-using-sendgrid/#comment-37

SO what CODE is inside that index file that passes the sendgrid email into the controller

is it just like a regular form page...?

4

2 回答 2

1

没有索引文件,只是从 SendGrid 向您的应用程序发出的 post 请求。您指定您希望该帖子转到的 url,当 SendGrid 收到电子邮件时,它会将请求发布到您指定的 URL,并使用电子邮件字段作为参数。

PS。NancesKitchen.com 是我的博客。

于 2010-10-04T13:58:21.797 回答
0

不应涉及索引文件(如在静态 HTML 或视图文件中)。

Sendgrid 在给定的 URL 上向您的应用发出请求。在您的应用程序方面,此请求由控制器直接处理。但是,params 哈希不是由表单数据填充,而是由 Sendgrid 请求中的数据填充。

于 2010-10-04T10:38:31.283 回答