• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to track Email Messages

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I need to create a module that resembles a "Email Marketing" where you can:

1. Send email to list of users and track the delivered & undelivered email addresses;
2. Track which links(in the email body) were clicked.

Basically sending & tracking email messages.

Please suggest me a good approach for the above scenario. I would like to have an tutorial/example or a Java API that does this.

Thanks for your help in advance!


Regards,
Somu
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Somu Pitchaiah wrote:1. Send email to list of users and track the delivered & undelivered email addresses;


Obviously, you need to check the email account you're using to send the mails for bounced mails.

Apart from that, you can try this: Using delivery status notifications

2. Track which links(in the email body) were clicked.


This is discussed in the other thread where you asked about this.
 
Somu Pitchaiah
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for the reply. Will try it out!
 
reply
    Bookmark Topic Watch Topic
  • New Topic