when someone clicks a link can i get email notification?

aarongoldsten

Junior Member
Joined
Oct 22, 2014
Messages
177
Reaction score
64
looking for a way when someone clicks my link / goes to a certain page (my google doc form) i get an email notification about it. ty
 
Why do you need this? I don't understand a purpose. Just to know?
 
You can encrypt your links with an autoresponder or similar tool for statistics.
 
If you're using gmail there are a ton of free tools that can do this.
 
you can use analytics from any free ESP like mailchimp and track link clicks. If you are doing some emailing that you can't use a major ESP w/, email on acid has a very effective analytic tool but $45 a month i've used, litmus too but too expensive
 
Use mailchimp for tracking CTR. I don't have any idea about sending to mail after clicking on the link. :)
 
I don't know your marketing technique!
So, if you are doing email marketing; almost all the email marketing companies provides tracking function!
In any other case; use click-meter to track down everything!

cheers
 
Make your link look like this:

Code:
<a href="youForwardingURL" onclick='sendmymail("name of link clicked like privacy policy")'>Privacy</a>

then include jquery and the following javascript:

Code:
function sendmymail(link) {
var dataString = 'link='+ link;
$.ajax({
        type: "POST",
        url: "send.php",
	data: dataString
    });
}

and finally include the following php script in the root directory and name it "send.php":

Code:
<?php
if($_POST){
    $link = $_POST['link'];
}
//send email
    mail("[email protected]", "Link Clicked", 'Someone clicked on the link: '.$link.'.');
?>
 
Back
Top