Skip to content

Instantly share code, notes, and snippets.

@angrycider
Created March 27, 2017 22:13
Show Gist options
  • Save angrycider/ca45209fcad89ae3f71e7119680f24ef to your computer and use it in GitHub Desktop.
Save angrycider/ca45209fcad89ae3f71e7119680f24ef to your computer and use it in GitHub Desktop.
14. Perform/Send an Email Send Definition
//Execute User Initiated Send
var def = {
'CustomerKey': 'DCL_Test',
};
SoapClient.perform('EmailSendDefinition', def, function(err, response){
if(err){
console.log(err);
}
else{
console.log(response.body.Results);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment