hai friends can anone help me to provide a way to implement the following using rails. i created a mail campaign application.if a user successfuly created a campaign he will be getting a mail. 1. how i can track that someone opens the mail? what i did is just pass some parameters like used id , campaign id along with this.then i created one table to store the resulting url, campaign id, user id, and count. can anyone tell me about he controller method . is ma way is correct or not? 2. if one user got a mail and he forward that mail, how can i track ordetect the forward mail count. Thanks, tony -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 24 April 2010 05:43, Tony Augustine <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> hai friends can anone help me to provide a way to implement the > following using rails. > > i created a mail campaign application.if a user successfuly > created a campaign he will be getting a mail. > > 1. how i can track that someone opens the mail?As discussed in your previous post it is not possible to do this reliably. Consider emails you receive yourself for example. Do you want the sender to know when you open it on your personal PC? In principle this could allow him to determine things about you that you want to keep private. Are you at home at a particular time of day for example. Colin> what i did is just pass some parameters like used id , campaign id > along with this.then i created one table to store the resulting > url, campaign id, user id, and count. can anyone tell me about he > controller method . is ma way is correct or not? > > > 2. if one user got a mail and he forward that mail, how can i > track ordetect the forward mail count. > > > Thanks, > > tony > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Colin Law wrote:> On 24 April 2010 05:43, Tony Augustine <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: >> hai friends �can �anone �help me to provide a way to implement the >> following �using �rails. >> >> �i �created a �mail campaign �application.if a � user � successfuly >> created a campaign he �will be �getting a mail. >> >> 1. how i can �track that someone opens the mail? > > As discussed in your previous post it is not possible to do this > reliably. Consider emails you receive yourself for example. Do you > want the sender to know when you open it on your personal PC? In > principle this could allow him to determine things about you that you > want to keep private. Are you at home at a particular time of day for > example. > > Colinhallo sir. it can be done . in mailchimp and all theyb are tracking opened messages and also if that messages are forewarded to some one else, can track the open count of foreward mails opens -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 24 April 2010 08:59, Tony Augustine <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Colin Law wrote: >> On 24 April 2010 05:43, Tony Augustine <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: >>> hai friends �can �anone �help me to provide a way to implement the >>> following �using �rails. >>> >>> �i �created a �mail campaign �application.if a � user � successfuly >>> created a campaign he �will be �getting a mail. >>> >>> 1. how i can �track that someone opens the mail? >> >> As discussed in your previous post it is not possible to do this >> reliably. Consider emails you receive yourself for example. Do you >> want the sender to know when you open it on your personal PC? In >> principle this could allow him to determine things about you that you >> want to keep private. Are you at home at a particular time of day for >> example. >> >> Colin > > hallo sir. it can be done . in mailchimp and all theyb are > tracking opened messages and also if that messages are forewarded to > some one else, can track the open count of foreward mails opensNotice that I said it cannot be done _reliably_. Frederick suggested a method of including a image link in the email which can be logged at your site to indicate that the receiver has viewed the image. This will only work if the recipient has his email viewer setup to automatically open images, which many do not. Whatever mailchimp say they cannot guarantee it, they would not be able to detect that I had opened one of their mails for example. Colin Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.