I have a scenario in which i'm required to allow the user to send a message to multiple recipients but the user can also customize the message for each user by using a text editor. Now i know action-mailer allow multiple recipients but i'm wondering how am i supposed to handle the customized messages for each user and then sending them over.?

Are there any plugins or gems available to help support this functionality...or what else could be the solution for this??? please suggest...

link|improve this question

74% accept rate
feedback

3 Answers

up vote 1 down vote accepted

You have to send the emails one by one - you cannot customize the contents per receiver when sending out one single email to several receivers. This is how email works.
Instead what you should do is to store the customizations somewhere, and when the email sending is triggered, you cycle through the list of receivers, check if there are any customizations for him/her, build the email accordingly and send it out.

link|improve this answer
feedback

how about send to them one by one?

link|improve this answer
feedback

there must be something like bcc which is available generally it can be done by the help of bcc however there is no way except that in my opinion.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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