vote up 0 vote down star

I am writing a rails application that sends emails when certain actions occur, users can then reply to these emails and the system needs to match the reply email to the original email sent to the user.

It seems like the best way to do this is to save the message id header field when sending messages, is this possible in ActionMailer? I can then retrieve the references header from replies and match the messages.

If this is not possible are there any alternate solutions?

flag

2 Answers

vote up 1 vote down

another alternative is to add a tracking code to the email's 'reply to' field something like this: reply to: notification+${notifcation_id}@yourdomain.com

for example, if the notification id is 123, the user will reply to notification+123@yourdomain.com, when the system receives the email, 123 can be used to identify the original message.

link|flag
vote up 0 vote down

I'm not sure if it is possible within actionmailer to access the message id, however it is possible to add your own custom headers and then reference these when the user replies.

You do this within the mailer model as follows :-

@headers["VetId"] = order.vet_id
link|flag

Your Answer

Get an OpenID
or

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