Skip to content

Instantly share code, notes, and snippets.

@zuzannamj
Last active December 3, 2020 07:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zuzannamj/ee137068c437cb29d1eea5eb4d325fca to your computer and use it in GitHub Desktop.
Save zuzannamj/ee137068c437cb29d1eea5eb4d325fca to your computer and use it in GitHub Desktop.
<script runat="server">
Platform.Load("Core", "1")
var prox = new Script.Util.WSProxy();
var tsExKey = '12345'; //pass Triggered Send External Key
var EmailAddress = 'example@example.com'; //pass Email Address
var SubscriberKey = 'example@example.com'; //pass Subscriber Key
var firstName = 'Zuzanna'; //pass First Name
var tsDef = {
TriggeredSendDefinition: {
CustomerKey: tsExKey
},
Subscribers: [{
EmailAddress: EmailAddress,
SubscriberKey: SubscriberKey,
Attributes: [{
Name: 'firstName',
Value: firstName
}]
}]
};
var res = prox.createItem('TriggeredSend', tsDef);
Write(Stringify(res));
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment