Google Analytics Email Alerts

John brought to my attention a neat little Google Analytics PHP script from Latent Motion. It emails you whenever a website of yours drops in visits, page views, has sales spikes, changes in keyword trends, or in adwords ROI.

Setup requires alerts.php, googleanalytics.class.php (both are included in the zip) and the ID's for your sites (that's the id=[numbers] in the URL of a report).

Customizing the script is easy, you just put your email address, analytics login/password, and so on in their places at the top of the script like so:

<?php
// include the Google Analytics PHP class
include "googleanalytics.class.php";

$emailAddy = "kentc@vkistudios.com"; // Send-to email address, in case different from GA
$analyticsUser = "kentc@gmail.com"; // Username
$analyticsPassword = "oodlesofdoodles"; // Password
// And now, a list of account IDs you want to check for: $analyticsIDs = array(
   "vkistudios.com" => 12345678,
   "deniSite2.org" => 1234568,
   "demoSite3.org" => 1234569
);

Then just upload to your server and set it to run as a standard cron job. Pretty easy.

You can get more info, as well as download the scripts at the Latent Motion website.

Comments
Thanks for posting such a useful tool.

I really appreciate it any time someone adds to the functionality of an already amazing (and free) product.

Sincerly,
Vi Wickam
# Posted By Vi Wickam | 10/10/09 3:59 PM
.