Skip to content

Instantly share code, notes, and snippets.

@eliotharper
Last active February 28, 2024 09:23
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eliotharper/4edee76c117c68c77f92f01cd5b8c6ef to your computer and use it in GitHub Desktop.
Save eliotharper/4edee76c117c68c77f92f01cd5b8c6ef to your computer and use it in GitHub Desktop.
Sample SSJS used in a CloudPage Code Resource to track engagement of AMP Emails
<script language='javascript' runat='server'>
Platform.Load('Core', '1');
// Arrays of allowed values for both Sender Address and Sender Origin
// Sender Address is the from address when you send an email, make sure your expected from address is included in the list
// Sender Origin represents the domain originating the request
// The Marketing Cloud origin is in place to allow testing in Subscriber Preview, update that value to match your stack
var isAllowed = {
senderAddress:[
'amp@gmail.dev' // add 'from' addresses here
],
senderOrigin:[
'https://playground.amp.dev',
'https://amp.gmail.dev',
'https://mail.google.com',
'https://user-content.s10.sfmc-content.com' // update to SFMC stack
]
}
// Getting headers from the request made to the Code Resource
var emailSender = Platform.Request.GetRequestHeader('AMP-Email-Sender')
var emailOrigin = Platform.Request.GetRequestHeader('Origin')
var sourceOrigin = Platform.Request.GetQueryStringParameter('__amp_source_origin');
//Helper function to check arrays
Array.includes = function(req, arr) {
for(i = 0; i < arr.length; i++) {
if (!ret || ret == false) {
ret = req.toUpperCase() == arr[i].toUpperCase() ? true: false;
}
}
return ret;
}
// Check the email sender and origin from the request against the allowed values in `isAllowed`
// If anything fails, an error is raised and the request returns no data
if(emailSender) {
if(Array.includes(emailSender, isAllowed.senderAddress)) {
HTTPHeader.SetValue('AMP-Email-Allow-Sender', emailSender)
} else {
Platform.Function.RaiseError('Sender Not Allowed',true,'statusCode','3');
}
} else if(emailOrigin) {
if(Array.includes(emailOrigin, isAllowed.senderOrigin)) {
if (sourceOrigin) {
HTTPHeader.SetValue('Access-Control-Allow-Origin', emailOrigin);
HTTPHeader.SetValue('Access-Control-Expose-Headers', 'AMP-Access-Control-Allow-Source-Origin');
HTTPHeader.SetValue('AMP-Access-Control-Allow-Source-Origin', sourceOrigin);
// added for testing in certain environments
HTTPHeader.SetValue('Access-Control-Allow-Credentials', 'true');
}
} else {
Platform.Function.RaiseError('Origin Not Allowed',true,'statusCode','3');
}
} else {
// If neither header is present raise an error and return no data
Platform.Function.RaiseError('Origin and Sender Not Present',true,'statusCode','3');
}
var sk = Attribute.GetValue('_subscriberKey');
var sysDate = Platform.Function.Now();
var eventDate = Platform.Function.SystemDateToLocalDate(sysDate);
if (Platform.Request.Method=='POST') { // amp-form xhr request
var bagDE = 'AMP Email Update Bag Log';
var sku = Platform.Request.GetQueryStringParameter('sku');
var qty = Platform.Request.GetQueryStringParameter('qty');
Platform.Function.UpsertData(bagDE ,['SubscriberKey'],[sk], [sku, 'LastUpdated'], [qty, eventDate]);
} else {
Write( '{"items":[]}' );
var trackingDE = 'AMP Email Open Tracking Log';
var email = Attribute.GetValue('emailaddr');
var emailId = Attribute.GetValue('_emailid');
var jobId = Attribute.GetValue('jobid');
var listId = Attribute.GetValue('listid');
var batchId = Attribute.GetValue('_JobSubscriberBatchID');
// update with DE fields
var cols = ['SubscriberKey', 'EmailAddress', 'EmailId', 'JobId', 'ListId', 'BatchId', 'EventDate'];
// update with DE values
var vals = [sk, email, emailId, jobId, listId, batchId, eventDate];
Platform.Function.InsertData(trackingDE, cols, vals);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment