Email sent to client notification and tracking the link
-
Can anyone tell me with code in vb.net how to get email notification when client has opened the email sent to him and which client and on which link and how many time he had clicked in the email sent to him
Niraj001 wrote:
Can anyone tell me with code in vb.net
No..! No one will tell u with code..! This forum is for helping people when you are stuck..! If you want with code post this in jobsection..! Tell me what have you tried ? where do u stuck..? and the question is bit confusing can you explain what r u trying to achieve..!
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
Niraj001 wrote:
Can anyone tell me with code in vb.net
No..! No one will tell u with code..! This forum is for helping people when you are stuck..! If you want with code post this in jobsection..! Tell me what have you tried ? where do u stuck..? and the question is bit confusing can you explain what r u trying to achieve..!
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
I want only the idea how I will check that what links the customer had clicked from the eshot sent to him and how many time.And the email opened notification to me.
Niraj001 wrote:
how many time.And the email opened notification to me
Just while sending the email add an ID of the customer in the body of the email and retrieve the Id of the customer and add it to the database..!
msg.body=YourBody+ "<a href="YourPage.aspx?ID=" + CustomerID + ">Confirm</a>"
Retriving the ID in YourPage.aspx in load event
int ID=Request.QueryString["ID"]
add it to the database..!
Niraj001 wrote:
what links the customer had clicked from the eshot sent to him
Youcan also add the clicke as above..! :cool::thumbsup:
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
Niraj001 wrote:
how many time.And the email opened notification to me
Just while sending the email add an ID of the customer in the body of the email and retrieve the Id of the customer and add it to the database..!
msg.body=YourBody+ "<a href="YourPage.aspx?ID=" + CustomerID + ">Confirm</a>"
Retriving the ID in YourPage.aspx in load event
int ID=Request.QueryString["ID"]
add it to the database..!
Niraj001 wrote:
what links the customer had clicked from the eshot sent to him
Youcan also add the clicke as above..! :cool::thumbsup:
LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.
-
Thanks for above answer.One more question is that how I will know what links on the email sent the customer had clicked and how many time.
Niraj001 wrote:
ent the customer had clicked and how many time.
This one is bit tricky You Have to go for create a LinkId ..! and in the body of the email give the LinkId for each link..! Like
href=""YourPage.aspx"+"Id="+CustomerID"+"LinkID="+LinkID;
dependind upon the LinkId Query String You can Use..!LatestArticle :Log4Net Why Do Some People Forget To Mark as Answer .If It Helps.