Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Ruby > HOW TO Track How Many Recipients Open Your Mail IN RAILS

Reply
Thread Tools

HOW TO Track How Many Recipients Open Your Mail IN RAILS

 
 
Tony Augustine
Guest
Posts: n/a
 
      04-22-2010
HOW TO Track How Many Recipients Open Your Mail IN RAILS?

please help me PROVIDE SOLUTIONS AND STEPS OR ELSE ANY PLUGIN
--
Posted via http://www.ruby-forum.com/.

 
Reply With Quote
 
 
 
 
Walton Hoops
Guest
Posts: n/a
 
      04-22-2010
On 4/21/2010 10:54 PM, Tony Augustine wrote:
> HOW TO Track How Many Recipients Open Your Mail IN RAILS?
>
> please help me PROVIDE SOLUTIONS AND STEPS OR ELSE ANY PLUGIN
>

Can't be done. There is no way to know for sure who has/hasn't read an
e-mail.
Here are some ways you can attempt it, but none of them work 100% (or
even 50%)
http://en.wikipedia.org/wiki/E-mail_tracking

 
Reply With Quote
 
 
 
 
Kevin Hopkins
Guest
Posts: n/a
 
      04-22-2010
[Note: parts of this message were removed to make it a legal post.]

Email tracking can be done with a fair amount of accuracy but it is a pain
to implement. The basic theory is that you can embed a 1px by 1px image in
your emails that must be downloaded from your server. When the user loads
the email, as long as they allow it to request images from external servers,
the image will be linked with a unique query string that when the image is
requested, is passed via the url to your rails controller. This unique
identifier can be matched via your models to the specific user that has that
token associated with their account. Once checking with the model, checking
out what email user made the request, the controller then rather than
rendering html or partial actually returns an image back to the user request
and as far as they know, most users wont be able to tell the difference.

this is not 100% accurate though and will take time to implement. There
arent any plugins or gems that I know of being available that handle this.
Maybe I'm wrong and someone else will know though

--Kevin

This is really the most accurate way but takes alot of jumping through hoops
to get it to work.

On Thu, Apr 22, 2010 at 9:50 AM, Walton Hoops <>wrote:

> On 4/21/2010 10:54 PM, Tony Augustine wrote:
> > HOW TO Track How Many Recipients Open Your Mail IN RAILS?
> >
> > please help me PROVIDE SOLUTIONS AND STEPS OR ELSE ANY PLUGIN
> >

> Can't be done. There is no way to know for sure who has/hasn't read an
> e-mail.
> Here are some ways you can attempt it, but none of them work 100% (or
> even 50%)
> http://en.wikipedia.org/wiki/E-mail_tracking
>
>



--
Kevin Hopkins, MCP MCTS
(c) 540.331.1772
(e)
(w) www.wearefound.com

 
Reply With Quote
 
Walton Hoops
Guest
Posts: n/a
 
      04-22-2010
On 4/22/2010 8:38 AM, Kevin Hopkins wrote:
> Email tracking can be done with a fair amount of accuracy but it is a pain
> to implement. The basic theory is that you can embed a 1px by 1px image in
> your emails that must be downloaded from your server. When the user loads
> the email, as long as they allow it to request images from external servers,
> the image will be linked with a unique query string that when the image is
> requested, is passed via the url to your rails controller. This unique
> identifier can be matched via your models to the specific user that has that
> token associated with their account. Once checking with the model, checking
> out what email user made the request, the controller then rather than
> rendering html or partial actually returns an image back to the user request
> and as far as they know, most users wont be able to tell the difference.
>
> this is not 100% accurate though and will take time to implement. There
> arent any plugins or gems that I know of being available that handle this.
> Maybe I'm wrong and someone else will know though
>
> --Kevin
>
> This is really the most accurate way but takes alot of jumping through hoops
> to get it to work.
>

It also doesn't work if the users client blocks remote content (most do).

 
Reply With Quote
 
Mathew Augustine
Guest
Posts: n/a
 
      04-24-2010
On Apr 23, 2:01*am, Walton Hoops <wal...@vyper.hopto.org> wrote:
> On 4/22/2010 8:38 AM, Kevin Hopkins wrote:
>
> > Email tracking can be done with a fair amount of accuracy but it is a pain
> > to implement. *The basic theory is that you can embed a 1px by 1px image in
> > your emails that must be downloaded from your server. *When the user loads
> > the email, as long as they allow it to request images from external servers,
> > the image will be linked with a unique query string that when the imageis
> > requested, is passed via the url to your rails controller. *This unique
> > identifier can be matched via your models to the specific user that hasthat
> > token associated with their account. *Once checking with the model, checking
> > out what email user made the request, the controller then rather than
> > rendering html or partial actually returns an image back to the user request
> > and as far as they know, most users wont be able to tell the difference..

>
> > this is not 100% accurate though and will take time to implement. *There
> > arent any plugins or gems that I know of being available that handle this.
> > Maybe I'm wrong and someone else will know though

>
> > --Kevin

>
> > This is really the most accurate way but takes alot of jumping through hoops
> > to get it to work.

>
> It also doesn't work if the users client blocks remote content (most do).


hallo sir can help me in how to track the forwaard mails and
whether its opened by user
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: How include a large array? Edward A. Falk C Programming 1 04-04-2013 08:07 PM
Sendmail with many attach and recipients Tim Williams Python 0 02-03-2005 05:22 PM
Sendmail with many attach and recipients fernandestb@gmail.com Python 0 02-03-2005 04:50 PM
452 4.5.3 Too many recipients error bb MCSA 1 10-17-2003 07:34 PM
452 4.5.3 Too many recipients error bb MCSE 2 10-17-2003 05:09 PM



Advertisments