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...?

link|improve this question

47% accept rate
feedback

2 Answers

There is no index file, just a post request to your application made from SendGrid. You specify the url you want that post to go to, and when SendGrid receives an email, it posts a request to your specified URL, with the email fields as parameters.

PS. NancesKitchen.com is my blog.

link|improve this answer
Ok so i think i've determined that i need a MODEL for this... currently its completely empty :D pastie.org/1206650 so what goes in the ? ... what am i inheriting here to make this work w sendgrid? – delinquentme Oct 8 '10 at 0:08
dougB is there any way i could pick your brain on this for like 10 minutes on aim or something :D .. i think im mildly lost even on the basics .. like i guess the order is a good spot to start: ... 1) email gets sent 2) email hits addy and gets forwarded to the mx.sendgrid.net 3) sendgrid passes the email to the app 4)app accepts via controller 5) controller writes it to the database .. so like where dos the model come in and what lines write stuff to the database :D – delinquentme Oct 10 '10 at 23:20
dougB simple question ... do you have a corresponding model file for this app? – delinquentme Oct 23 '10 at 12:21
I don't for this app, just a controller. For more complex apps I do. – DougB Dec 27 '11 at 16:13
feedback

There should be no index file (as in a static HTML or view file) involved.

Sendgrid makes the request to your app on a given URL. From your app's side, this request is handled straight by the controller. But instead of the params hash being populated by form data, it's populated by the data in the request from Sendgrid.

link|improve this answer
Ok so i think i've determined that i need a MODEL for this... – delinquentme Oct 7 '10 at 23:55
If you want to persist the information to a database, then yes. – tfe Oct 8 '10 at 2:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.