SlideShare a Scribd company logo
Programming the ExactTarget
Marketing Cloud
Dale McCrory, ExactTarget, Principal Product Manager, Fuel Platform
google.com/+DaleMcCrory
Safe harbor
Safe harbor statement under the Private Securities Litigation Reform Act of 1995:
This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties
materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results
expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be
deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other
financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any
statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services.
The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new
functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our
operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any
litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our
relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our
service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to
larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is
included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent
fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor
Information section of our Web site.
Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently
available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions
based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these
forward-looking statements.
ExactTarget Marketing Cloud
As a customer, you can automate entire marketing campaigns,
customize the ExactTarget application to your specific needs,
or integrate ExactTarget with a variety of CRM, analytics, and
other business software. As a partner, you can build or extend
marketing applications and take those applications to market
with ExactTarget via one of our platform-related partner
programs. As a developer, the possibilities are endless.
ExactTarget Fuel as part of Salesforce1
• Send email, SMS and push messages.
• Personalize messages using data and content scripting.
• Measure interaction and engagement (email opens & clicks,
etc.).
• Build apps that extend the Marketing Cloud.
The Marketing and
Development Mindmeld
Customer touchpoints for developers
Principle #1
Every email, every message, and every notification should be
thought of as a customer touchpoint -- an opportunity to influence
your customers and prospects.
Customer touchpoints for developers
Principle #2
Highly-targeted, relevant communication is as much a technology
problem as it is a marketer's dilemma.
Data drives relevancy
Customer events improve relevancy
Customer events improve relevancy
Permission, permission, permission
Customer touchpoint innovation
Programming the ExactTarget Marketing Cloud
Programming the ExactTarget Marketing Cloud
Programming the ExactTarget Marketing Cloud
Programming the ExactTarget Marketing Cloud
Programming the ExactTarget Marketing Cloud
Programming the ExactTarget Marketing Cloud
Key Fuel system objects for email sending
Marketing Cloud Fuel Objects mapped to Force.com
Marketing Cloud Fuel

Force.com

Lists

CRM Campaigns or Reports

Data Extensions

Objects

Contacts (Subscribers)

CRM Contacts

List Subscription

CRM CampaignMembers

Data Extension Fields /
Subscriber Attributes
Data Extension Keys

Object Fields

Marketing Events

CRM Contact Activities

Relationships
A “Super” Example
Programming the ExactTarget Marketing Cloud
Programming the ExactTarget Marketing Cloud
Programming the ExactTarget Marketing Cloud
Free pizza for guessing the coin toss
Free pizza for guessing the coin toss
Visualization of saving a subscriber and a data extension

Enroll

RewardsMember

Demographic Data
• Rewards Member ID
• First Name
• Last Name
• Zip Code

Marketing List

Vote

CoinToss

Data Extension

Event Data
• Rewards Member ID
• TossVote
Enrolling a new Rewards Members
SubscriberKey EmailAddress

First Name

Last Name

RegisteredDate

$subscriber = new ET_Subscriber();
$subscriber->authStub = $myclient;
$subscriber->props = array("SubscriberKey" => "12332432",
"EmailAddress" => "myemail@mycompany.com",
"Lists" => array("ID" => $listID));
$subscriber->props['Attributes'] = array(
array('Name' => 'First Name', 'Value' => 'John'),
array('Name' => 'Last Name', 'Value' => 'Smith'),
array('Name' => 'RegisteredDate', 'Value' => '12/01/2013 1:00pm’));
$postResponse = $subscriber->post();
Enrolling a new Rewards Members
SubscriberKey EmailAddress

First Name

Last Name

RegisteredDate

$subscriber = new ET_Subscriber();
$subscriber->authStub = $myclient;
$subscriber->props = array("SubscriberKey" => "12332432",
"EmailAddress" => "myemail@mycompany.com",
"Lists" => array("ID" => $listID));
$subscriber->props['Attributes'] = array(
array('Name' => 'First Name', 'Value' => 'John'),
array('Name' => 'Last Name', 'Value' => 'Smith'),
array('Name' => 'RegisteredDate', 'Value' => '12/01/2013 1:00pm’));
$postResponse = $subscriber->post();
Enrolling a new Rewards Members
SubscriberKey EmailAddress

First Name

Last Name

RegisteredDate

$subscriber = new ET_Subscriber();
$subscriber->authStub = $myclient;
$subscriber->props = array("SubscriberKey" => "12332432",
"EmailAddress" => "myemail@mycompany.com",
"Lists" => array("ID" => $listID));
$subscriber->props['Attributes'] = array(
array('Name' => 'First Name', 'Value' => 'John'),
array('Name' => 'Last Name', 'Value' => 'Smith'),
array('Name' => 'RegisteredDate', 'Value' => '12/01/2013 1:00pm’));
$postResponse = $subscriber->post();
Enrolling a new Rewards Members
SubscriberKey EmailAddress

First Name

Last Name

RegisteredDate

12332432

John

Smith

12/01/2013 1:00pm

myemail@mycompany.com

$subscriber = new ET_Subscriber();
$subscriber->authStub = $myclient;
$subscriber->props = array("SubscriberKey" => "12332432",
"EmailAddress" => "myemail@mycompany.com",
"Lists" => array("ID" => $listID));
$subscriber->props['Attributes'] = array(
array('Name' => 'First Name', 'Value' => 'John'),
array('Name' => 'Last Name', 'Value' => 'Smith'),
array('Name' => 'RegisteredDate', 'Value' => '12/01/2013 1:00pm’));
$postResponse = $subscriber->post();
Storing the Rewards Member Vote event
memberId

tossVote

$postDRRow = new ET_DataExtension_Row();
$postDRRow->authStub = $myclient;
$postDRRow->Name = "CoinToss";
$postDRRow->props = array(
”memberId" => "12332432",
"tossVote" => "heads”
);
$postResponse = $postDRRow->post();
print_r($postResponse);
Storing the Rewards Member Vote event
memberId

tossVote

$postDRRow = new ET_DataExtension_Row();
$postDRRow->authStub = $myclient;
$postDRRow->Name = "CoinToss";
$postDRRow->props = array(
”memberId" => "12332432",
"tossVote" => "heads”
);
$postResponse = $postDRRow->post();
print_r($postResponse);
Storing the Rewards Member Vote event
memberId

tossVote

$postDRRow = new ET_DataExtension_Row();
$postDRRow->authStub = $myclient;
$postDRRow->Name = "CoinToss";
$postDRRow->props = array(
”memberId" => "12332432",
"tossVote" => "heads”
);
$postResponse = $postDRRow->post();
print_r($postResponse);
Storing the Rewards Member Vote event
memberId

tossVote

12332432

heads

$postDRRow = new ET_DataExtension_Row();
$postDRRow->authStub = $myclient;
$postDRRow->Name = "CoinToss";
$postDRRow->props = array(
”memberId" => "12332432",
"tossVote" => "heads”
);
$postResponse = $postDRRow->post();
print_r($postResponse);

SubscriberKey

memberId
Programming the ExactTarget Marketing Cloud
Email code to myself

Event

TriggeredSend

Email

API Call

CodeRequest

CoinToss

Send-Time Data in
a Data Extension or
Subscriber Attribute

Data Extension

RewardsMember

Subscriber Attributes
Email code to myself: Triggered send event
Event: Trigger an email send and add personalization data
ET_TriggeredSend ts = new ET_TriggeredSend();
ts.AuthStub = $myclient;
ts.CustomerKey = "PromoCode";
ts.Subscribers = new ET_Subscriber[] {
new ET_Subscriber() {
emailAddress = "myemail@mycompany.com",
subscriberKey = "12332432”,
promoCode = "f02020ddE"
}
};
SendReturn results = ts.Send();
Email code to myself: Triggered send event
Event: Trigger an email send and add personalization data
ET_TriggeredSend ts = new ET_TriggeredSend();
ts.AuthStub = $myclient;
ts.CustomerKey = "PromoCode";
ts.Subscribers = new ET_Subscriber[] {
new ET_Subscriber() {
emailAddress = "myemail@mycompany.com",
subscriberKey = "12332432”,
promoCode = "f02020ddE"
}
};
SendReturn results = ts.Send();
Email code to myself: Triggered send event
Event: Trigger an email send and add personalization data
ET_TriggeredSend ts = new ET_TriggeredSend();
ts.AuthStub = $myclient;
ts.CustomerKey = "PromoCode";
ts.Subscribers = new ET_Subscriber[] {
new ET_Subscriber() {
emailAddress = "myemail@mycompany.com",
subscriberKey = "12332432”,
promoCode = "f02020ddE"
}
};
SendReturn results = ts.Send();
Email code to myself: Email personalization
Substitution String and AMPScript
in an Email Template

Rendered Email

Dear %%First Name%% %%Last Name%%,

Dear John Smith,

Your promo code for free pizza is:
%%PromoCode%%

Your promo code for free pizza is:
f02020ddE

Thanks for voting:
%%=Lookup(“CoinToss”,”tossVote”,“memberId”,_subscriberKey)=%%

Thanks for voting:
Heads
Email code to myself: Email personalization
Substitution String and AMPScript
in an Email Template

Rendered Email

Dear %%First Name%% %%Last Name%%,

Dear John Smith,

Your promo code for free pizza is:
%%PromoCode%%

Your promo code for free pizza is:
f02020ddE

Thanks for voting:
%%=Lookup(“CoinToss”,”tossVote”,“memberId”,_subscriberKey)=%%

Thanks for voting:
Heads
Email code to myself: Email personalization
Substitution String and AMPScript
in an Email Template

Rendered Email

Dear %%First Name%% %%Last Name%%,

Dear John Smith,

Your promo code for free pizza is:
%%PromoCode%%

Your promo code for free pizza is:
f02020ddE

Thanks for voting:
%%=Lookup(“CoinToss”,”tossVote”,“memberId”,_subscriberKey)=%%

Thanks for voting:
Heads

Data Source #1: Marketing List by Subscriber Key
Email code to myself: Email personalization
Substitution String and AMPScript
in an Email Template

Rendered Email

Dear %%First Name%% %%Last Name%%,

Dear John Smith,

Your promo code for free pizza is:
%%PromoCode%%

Your promo code for free pizza is:
f02020ddE

Thanks for voting:
%%=Lookup(“CoinToss”,”tossVote”,“memberId”,_subscriberKey)=%%

Thanks for voting:
Heads

Data Source #1: Marketing List by Subscriber Key
Data Source #2: Transactional Send Data
Email code to myself: Email personalization
Substitution String and AMPScript
in an Email Template

Rendered Email

Dear %%First Name%% %%Last Name%%,

Dear John Smith,

Your promo code for free pizza is:
%%PromoCode%%

Your promo code for free pizza is:
f02020ddE

Thanks for voting:
%%=Lookup(“CoinToss”,”tossVote”,“memberId”,_subscriberKey)=%%

Thanks for voting:
Heads

Data Source #1: Marketing List by Subscriber Key
Data Source #2: Transactional Send Data
Data Source #3: Voting Data by SubscriberKey
Mobile Messaging with
Push Notifications
Using push messaging as a customer touchpoint
Using push messaging as a customer touchpoint
POST https://www.exacttargetapis.com/push/v1/messageTag/OEl8ODow/send
Authorization: Bearer exampletoken1
Content-Type: application/json
{
"InclusionTags": [
"Salesforce", "ExactTarget"
],
"ExclusionTags": [
"Competitors"
],
"Override": true,
"MessageText": "Cloudy with a Chance of Customers - Now playing!",
"Sound": "lightning.caf",
"Badge": "+1",
"OpenDirect": "OD01",
"CustomPayload": "{ "availableSeats": "2 billion" }"
}
Using push messaging as a customer touchpoint
POST https://www.exacttargetapis.com/push/v1/messageTag/OEl8ODow/send
Authorization: Bearer exampletoken1
Content-Type: application/json
{
"InclusionTags": [
"Salesforce", "ExactTarget"
],
"ExclusionTags": [
"Competitors"
],
"Override": true,
"MessageText": "Cloudy with a Chance of Customers - Now playing!",
"Sound": "lightning.caf",
"Badge": "+1",
"OpenDirect": "OD01",
"CustomPayload": "{ "availableSeats": "2 billion" }"
}
Using push messaging as a customer touchpoint
POST https://www.exacttargetapis.com/push/v1/messageTag/OEl8ODow/send
Authorization: Bearer exampletoken1
Content-Type: application/json
{
"InclusionTags": [
"Salesforce", "ExactTarget"
],
"ExclusionTags": [
"Competitors"
],
"Override": true,
"MessageText": "Cloudy with a Chance of Customers - Now playing!",
"Sound": "lightning.caf",
"Badge": "+1",
"OpenDirect": "OD01",
"CustomPayload": "{ "availableSeats": "2 billion" }"
}
Using push messaging as a customer touchpoint
POST https://www.exacttargetapis.com/push/v1/messageTag/OEl8ODow/send
Authorization: Bearer exampletoken1
Content-Type: application/json
{
"InclusionTags": [
"Salesforce", "ExactTarget"
],
"ExclusionTags": [
"Competitors"
],
"Override": true,
"MessageText": "Cloudy with a Chance of Customers - Now playing!",
"Sound": "lightning.caf",
"Badge": "+1",
"OpenDirect": "OD01",
"CustomPayload": "{ "availableSeats": "2 billion" }"
}
Mobile Messaging with
SMS
Using SMS messaging as a customer touchpoint
Using SMS messaging as a customer touchpoint
POST https://www.exacttargetapis.com/sms/v1/messageContact/MzA6Nzg6MA/send
Authorization: Bearer exampletoken1
Content-Type: application/json
{
"mobileNumbers": [
"13175551212"
],
"Subscribe": true,
"keyword": "ALERTS",
"messageText": "Text ALERTS to 12345 to receive new movie notifications via SMS.",
"BlackoutWindow": {
"UtcOffset": "-0500",
"WindowStart": "1500",
"WindowEnd": "2200"
},
"SendTime": "2012-10-05 20:01"
}
Using SMS messaging as a customer touchpoint
POST https://www.exacttargetapis.com/sms/v1/messageContact/MzA6Nzg6MA/send
Authorization: Bearer exampletoken1
Content-Type: application/json
{
"mobileNumbers": [
"13175551212"
],
"Subscribe": true,
"keyword": "ALERTS",
"messageText": "Text ALERTS to 12345 to receive new movie notifications via SMS.",
"BlackoutWindow": {
"UtcOffset": "-0500",
"WindowStart": "1500",
"WindowEnd": "2200"
},
"SendTime": "2012-10-05 20:01"
}
Using SMS messaging as a customer touchpoint
POST https://www.exacttargetapis.com/sms/v1/messageContact/MzA6Nzg6MA/send
Authorization: Bearer exampletoken1
Content-Type: application/json
{
"mobileNumbers": [
"13175551212"
],
"Subscribe": true,
"keyword": "ALERTS",
"messageText": "Text ALERTS to 12345 to receive new movie notifications via SMS.",
"BlackoutWindow": {
"UtcOffset": "-0500",
"WindowStart": "1500",
"WindowEnd": "2200"
},
"SendTime": "2012-10-05 20:01"
}
Using SMS messaging as a customer touchpoint
POST https://www.exacttargetapis.com/sms/v1/messageContact/MzA6Nzg6MA/send
Authorization: Bearer exampletoken1
Content-Type: application/json
{
"mobileNumbers": [
"13175551212"
],
"Subscribe": true,
"keyword": "ALERTS",
"messageText": "Text ALERTS to 12345 to receive new movie notifications via SMS.",
"BlackoutWindow": {
"UtcOffset": "-0500",
"WindowStart": "1500",
"WindowEnd": "2200"
},
"SendTime": "2012-10-05 20:01"
}
Using SMS messaging as a customer touchpoint
POST https://www.exacttargetapis.com/sms/v1/messageContact/MzA6Nzg6MA/send
Authorization: Bearer exampletoken1
Content-Type: application/json
{
"mobileNumbers": [
"13175551212"
],
"Subscribe": true,
"keyword": "ALERTS",
"messageText": "Text ALERTS to 12345 to receive new movie notifications via SMS.",
"BlackoutWindow": {
"UtcOffset": "-0500",
"WindowStart": "1500",
"WindowEnd": "2200"
},
"SendTime": "2012-10-05 20:01"
}
Learning More…
Developer Resources

code.exacttarget.com
Dreamforce Developer Edition

code.exacttarget.com
INNOVATE!!
!
Dale McCrory
ExactTarget
Principal Product Manager, Fuel Platform
google.com/+DaleMcCrory
Programming the ExactTarget Marketing Cloud
Ad

More Related Content

What's hot (20)

Marketing Cloud - Partner Office Hour (November 3, 2015)
Marketing Cloud - Partner Office Hour (November 3, 2015)Marketing Cloud - Partner Office Hour (November 3, 2015)
Marketing Cloud - Partner Office Hour (November 3, 2015)
Salesforce Partners
 
How Salesforce Uses Marketing Cloud
How Salesforce Uses Marketing Cloud  How Salesforce Uses Marketing Cloud
How Salesforce Uses Marketing Cloud
Dreamforce
 
CNX16 - Connecting the Cloud: Marketing Cloud Connect
CNX16 - Connecting the Cloud: Marketing Cloud ConnectCNX16 - Connecting the Cloud: Marketing Cloud Connect
CNX16 - Connecting the Cloud: Marketing Cloud Connect
Cloud_Services
 
Disrupting the Marketing Model with Journey Builder
Disrupting the Marketing Model with Journey BuilderDisrupting the Marketing Model with Journey Builder
Disrupting the Marketing Model with Journey Builder
Salesforce Marketing Cloud
 
Digital Marketing Automation with Salesforce Marketing Cloud
Digital Marketing Automation with Salesforce Marketing CloudDigital Marketing Automation with Salesforce Marketing Cloud
Digital Marketing Automation with Salesforce Marketing Cloud
Thinqloud
 
Sponsor Presentation: SalesForce Marketing Cloud
Sponsor Presentation: SalesForce Marketing CloudSponsor Presentation: SalesForce Marketing Cloud
Sponsor Presentation: SalesForce Marketing Cloud
Omari Matthew
 
Our top picks from Salesforce Winter'17 release !!
Our top picks from Salesforce Winter'17 release !!Our top picks from Salesforce Winter'17 release !!
Our top picks from Salesforce Winter'17 release !!
Thinqloud
 
Creating stronger connections using exact target marketing cloud
Creating stronger connections using exact target marketing cloudCreating stronger connections using exact target marketing cloud
Creating stronger connections using exact target marketing cloud
Salesforce.org
 
Flexible Frameworks: A Springboard to Sophistication
Flexible Frameworks: A Springboard to Sophistication Flexible Frameworks: A Springboard to Sophistication
Flexible Frameworks: A Springboard to Sophistication
Salesforce Marketing Cloud
 
How to optimize salesforce marketing cloud
How to optimize salesforce marketing cloud How to optimize salesforce marketing cloud
How to optimize salesforce marketing cloud
Cloud Analogy
 
Marketing cloud development
Marketing cloud developmentMarketing cloud development
Marketing cloud development
Amit Chaudhary
 
Salesforce for Marketing Overview Deck
Salesforce for Marketing Overview DeckSalesforce for Marketing Overview Deck
Salesforce for Marketing Overview Deck
Sylvia Wong ☁
 
APAC Webinar Connecting Marketing, Sales and Service Clouds (August 24, 2016)
APAC Webinar Connecting Marketing, Sales and Service Clouds (August 24, 2016)APAC Webinar Connecting Marketing, Sales and Service Clouds (August 24, 2016)
APAC Webinar Connecting Marketing, Sales and Service Clouds (August 24, 2016)
Salesforce Partners
 
Salesforce Marketing Cloud: Creating 1:1 Journeys
Salesforce Marketing Cloud: Creating 1:1 JourneysSalesforce Marketing Cloud: Creating 1:1 Journeys
Salesforce Marketing Cloud: Creating 1:1 Journeys
Salesforce Partners
 
Getting the Most Out of Microsoft Dynamics CRM Integrations
Getting the Most Out of Microsoft Dynamics CRM IntegrationsGetting the Most Out of Microsoft Dynamics CRM Integrations
Getting the Most Out of Microsoft Dynamics CRM Integrations
Salesforce Marketing Cloud
 
Marketing Cloud: Salesforce Marketing Cloud: die Customer Journey fängt hier ...
Marketing Cloud: Salesforce Marketing Cloud: die Customer Journey fängt hier ...Marketing Cloud: Salesforce Marketing Cloud: die Customer Journey fängt hier ...
Marketing Cloud: Salesforce Marketing Cloud: die Customer Journey fängt hier ...
Salesforce Deutschland
 
CNX16 - 1:1 Email Messaging
CNX16 - 1:1 Email MessagingCNX16 - 1:1 Email Messaging
CNX16 - 1:1 Email Messaging
Cloud_Services
 
CNX16 - Getting Started with Social Studio
CNX16 - Getting Started with Social StudioCNX16 - Getting Started with Social Studio
CNX16 - Getting Started with Social Studio
Cloud_Services
 
CNX16 - Concept to Creation: Taking Your Customer Journeys from the Whiteboar...
CNX16 - Concept to Creation: Taking Your Customer Journeys from the Whiteboar...CNX16 - Concept to Creation: Taking Your Customer Journeys from the Whiteboar...
CNX16 - Concept to Creation: Taking Your Customer Journeys from the Whiteboar...
Cloud_Services
 
How Salesforce Uses the Marketing Cloud
How Salesforce Uses the Marketing CloudHow Salesforce Uses the Marketing Cloud
How Salesforce Uses the Marketing Cloud
Salesforce Marketing Cloud
 
Marketing Cloud - Partner Office Hour (November 3, 2015)
Marketing Cloud - Partner Office Hour (November 3, 2015)Marketing Cloud - Partner Office Hour (November 3, 2015)
Marketing Cloud - Partner Office Hour (November 3, 2015)
Salesforce Partners
 
How Salesforce Uses Marketing Cloud
How Salesforce Uses Marketing Cloud  How Salesforce Uses Marketing Cloud
How Salesforce Uses Marketing Cloud
Dreamforce
 
CNX16 - Connecting the Cloud: Marketing Cloud Connect
CNX16 - Connecting the Cloud: Marketing Cloud ConnectCNX16 - Connecting the Cloud: Marketing Cloud Connect
CNX16 - Connecting the Cloud: Marketing Cloud Connect
Cloud_Services
 
Disrupting the Marketing Model with Journey Builder
Disrupting the Marketing Model with Journey BuilderDisrupting the Marketing Model with Journey Builder
Disrupting the Marketing Model with Journey Builder
Salesforce Marketing Cloud
 
Digital Marketing Automation with Salesforce Marketing Cloud
Digital Marketing Automation with Salesforce Marketing CloudDigital Marketing Automation with Salesforce Marketing Cloud
Digital Marketing Automation with Salesforce Marketing Cloud
Thinqloud
 
Sponsor Presentation: SalesForce Marketing Cloud
Sponsor Presentation: SalesForce Marketing CloudSponsor Presentation: SalesForce Marketing Cloud
Sponsor Presentation: SalesForce Marketing Cloud
Omari Matthew
 
Our top picks from Salesforce Winter'17 release !!
Our top picks from Salesforce Winter'17 release !!Our top picks from Salesforce Winter'17 release !!
Our top picks from Salesforce Winter'17 release !!
Thinqloud
 
Creating stronger connections using exact target marketing cloud
Creating stronger connections using exact target marketing cloudCreating stronger connections using exact target marketing cloud
Creating stronger connections using exact target marketing cloud
Salesforce.org
 
Flexible Frameworks: A Springboard to Sophistication
Flexible Frameworks: A Springboard to Sophistication Flexible Frameworks: A Springboard to Sophistication
Flexible Frameworks: A Springboard to Sophistication
Salesforce Marketing Cloud
 
How to optimize salesforce marketing cloud
How to optimize salesforce marketing cloud How to optimize salesforce marketing cloud
How to optimize salesforce marketing cloud
Cloud Analogy
 
Marketing cloud development
Marketing cloud developmentMarketing cloud development
Marketing cloud development
Amit Chaudhary
 
Salesforce for Marketing Overview Deck
Salesforce for Marketing Overview DeckSalesforce for Marketing Overview Deck
Salesforce for Marketing Overview Deck
Sylvia Wong ☁
 
APAC Webinar Connecting Marketing, Sales and Service Clouds (August 24, 2016)
APAC Webinar Connecting Marketing, Sales and Service Clouds (August 24, 2016)APAC Webinar Connecting Marketing, Sales and Service Clouds (August 24, 2016)
APAC Webinar Connecting Marketing, Sales and Service Clouds (August 24, 2016)
Salesforce Partners
 
Salesforce Marketing Cloud: Creating 1:1 Journeys
Salesforce Marketing Cloud: Creating 1:1 JourneysSalesforce Marketing Cloud: Creating 1:1 Journeys
Salesforce Marketing Cloud: Creating 1:1 Journeys
Salesforce Partners
 
Getting the Most Out of Microsoft Dynamics CRM Integrations
Getting the Most Out of Microsoft Dynamics CRM IntegrationsGetting the Most Out of Microsoft Dynamics CRM Integrations
Getting the Most Out of Microsoft Dynamics CRM Integrations
Salesforce Marketing Cloud
 
Marketing Cloud: Salesforce Marketing Cloud: die Customer Journey fängt hier ...
Marketing Cloud: Salesforce Marketing Cloud: die Customer Journey fängt hier ...Marketing Cloud: Salesforce Marketing Cloud: die Customer Journey fängt hier ...
Marketing Cloud: Salesforce Marketing Cloud: die Customer Journey fängt hier ...
Salesforce Deutschland
 
CNX16 - 1:1 Email Messaging
CNX16 - 1:1 Email MessagingCNX16 - 1:1 Email Messaging
CNX16 - 1:1 Email Messaging
Cloud_Services
 
CNX16 - Getting Started with Social Studio
CNX16 - Getting Started with Social StudioCNX16 - Getting Started with Social Studio
CNX16 - Getting Started with Social Studio
Cloud_Services
 
CNX16 - Concept to Creation: Taking Your Customer Journeys from the Whiteboar...
CNX16 - Concept to Creation: Taking Your Customer Journeys from the Whiteboar...CNX16 - Concept to Creation: Taking Your Customer Journeys from the Whiteboar...
CNX16 - Concept to Creation: Taking Your Customer Journeys from the Whiteboar...
Cloud_Services
 

Similar to Programming the ExactTarget Marketing Cloud (20)

Marketing cloud platform walkthrough and admin deepdive
Marketing cloud platform walkthrough and admin deepdiveMarketing cloud platform walkthrough and admin deepdive
Marketing cloud platform walkthrough and admin deepdive
Kishore B T
 
How Salesforce.com Uses Marketing
How Salesforce.com Uses MarketingHow Salesforce.com Uses Marketing
How Salesforce.com Uses Marketing
dreamforce2006
 
Introduction to Data.com APIs
Introduction to Data.com APIsIntroduction to Data.com APIs
Introduction to Data.com APIs
Salesforce Developers
 
Aan009 Contreras 091907
Aan009 Contreras 091907Aan009 Contreras 091907
Aan009 Contreras 091907
Dreamforce07
 
Developing Apex Triggers for Chatter
Developing Apex Triggers for ChatterDeveloping Apex Triggers for Chatter
Developing Apex Triggers for Chatter
Salesforce Developers
 
ABC of Einstein Analytics
ABC of Einstein AnalyticsABC of Einstein Analytics
ABC of Einstein Analytics
rikkehovgaard
 
Building Apps for the ExactTarget Marketing Cloud
Building Apps for the ExactTarget Marketing CloudBuilding Apps for the ExactTarget Marketing Cloud
Building Apps for the ExactTarget Marketing Cloud
Salesforce Developers
 
Spring 21 Salesforce Release Highlights with Awesome Admin Marc Baizman Welli...
Spring 21 Salesforce Release Highlights with Awesome Admin Marc Baizman Welli...Spring 21 Salesforce Release Highlights with Awesome Admin Marc Baizman Welli...
Spring 21 Salesforce Release Highlights with Awesome Admin Marc Baizman Welli...
Anna Loughnan Colquhoun
 
Get the Analytic Edge, Learn Einstein Analytics
Get the Analytic Edge, Learn Einstein AnalyticsGet the Analytic Edge, Learn Einstein Analytics
Get the Analytic Edge, Learn Einstein Analytics
rikkehovgaard
 
Data.com APIs in Action ? Bringing Data to Life in Salesforce
Data.com APIs in Action ? Bringing Data to Life in SalesforceData.com APIs in Action ? Bringing Data to Life in Salesforce
Data.com APIs in Action ? Bringing Data to Life in Salesforce
Salesforce Developers
 
Developing Offline Mobile Apps With Salesforce Mobile SDK SmartStore
Developing Offline Mobile Apps With Salesforce Mobile SDK SmartStoreDeveloping Offline Mobile Apps With Salesforce Mobile SDK SmartStore
Developing Offline Mobile Apps With Salesforce Mobile SDK SmartStore
Salesforce Developers
 
Building Integrated Marketing Reports and Dashboards
Building Integrated Marketing Reports and DashboardsBuilding Integrated Marketing Reports and Dashboards
Building Integrated Marketing Reports and Dashboards
dreamforce2006
 
Beyond Custom Metadata Types
Beyond Custom Metadata TypesBeyond Custom Metadata Types
Beyond Custom Metadata Types
Salesforce Developers
 
Essential Habits for New Admins
Essential Habits for New AdminsEssential Habits for New Admins
Essential Habits for New Admins
Salesforce Admins
 
Trailhead Live: Essential Habits & Core Admin Responsibilities
Trailhead Live: Essential Habits & Core Admin ResponsibilitiesTrailhead Live: Essential Habits & Core Admin Responsibilities
Trailhead Live: Essential Habits & Core Admin Responsibilities
Salesforce Admins
 
Pardot Story: Beyond List Email
Pardot Story: Beyond List EmailPardot Story: Beyond List Email
Pardot Story: Beyond List Email
Pardot
 
ODSC_v3.3
ODSC_v3.3ODSC_v3.3
ODSC_v3.3
Dilip Patel
 
System Overload - Getting Control of Your Data and Sanity
System Overload - Getting Control of Your Data and SanitySystem Overload - Getting Control of Your Data and Sanity
System Overload - Getting Control of Your Data and Sanity
dreamforce2006
 
System Overload: Getting Control of Your Data and Sanity
System Overload: Getting Control of Your Data and SanitySystem Overload: Getting Control of Your Data and Sanity
System Overload: Getting Control of Your Data and Sanity
dreamforce2006
 
Jacksonville, FL Salesforce Administrator Community Group June 2020 Deck
Jacksonville, FL Salesforce Administrator Community Group June 2020 DeckJacksonville, FL Salesforce Administrator Community Group June 2020 Deck
Jacksonville, FL Salesforce Administrator Community Group June 2020 Deck
Marc Lester
 
Marketing cloud platform walkthrough and admin deepdive
Marketing cloud platform walkthrough and admin deepdiveMarketing cloud platform walkthrough and admin deepdive
Marketing cloud platform walkthrough and admin deepdive
Kishore B T
 
How Salesforce.com Uses Marketing
How Salesforce.com Uses MarketingHow Salesforce.com Uses Marketing
How Salesforce.com Uses Marketing
dreamforce2006
 
Aan009 Contreras 091907
Aan009 Contreras 091907Aan009 Contreras 091907
Aan009 Contreras 091907
Dreamforce07
 
Developing Apex Triggers for Chatter
Developing Apex Triggers for ChatterDeveloping Apex Triggers for Chatter
Developing Apex Triggers for Chatter
Salesforce Developers
 
ABC of Einstein Analytics
ABC of Einstein AnalyticsABC of Einstein Analytics
ABC of Einstein Analytics
rikkehovgaard
 
Building Apps for the ExactTarget Marketing Cloud
Building Apps for the ExactTarget Marketing CloudBuilding Apps for the ExactTarget Marketing Cloud
Building Apps for the ExactTarget Marketing Cloud
Salesforce Developers
 
Spring 21 Salesforce Release Highlights with Awesome Admin Marc Baizman Welli...
Spring 21 Salesforce Release Highlights with Awesome Admin Marc Baizman Welli...Spring 21 Salesforce Release Highlights with Awesome Admin Marc Baizman Welli...
Spring 21 Salesforce Release Highlights with Awesome Admin Marc Baizman Welli...
Anna Loughnan Colquhoun
 
Get the Analytic Edge, Learn Einstein Analytics
Get the Analytic Edge, Learn Einstein AnalyticsGet the Analytic Edge, Learn Einstein Analytics
Get the Analytic Edge, Learn Einstein Analytics
rikkehovgaard
 
Data.com APIs in Action ? Bringing Data to Life in Salesforce
Data.com APIs in Action ? Bringing Data to Life in SalesforceData.com APIs in Action ? Bringing Data to Life in Salesforce
Data.com APIs in Action ? Bringing Data to Life in Salesforce
Salesforce Developers
 
Developing Offline Mobile Apps With Salesforce Mobile SDK SmartStore
Developing Offline Mobile Apps With Salesforce Mobile SDK SmartStoreDeveloping Offline Mobile Apps With Salesforce Mobile SDK SmartStore
Developing Offline Mobile Apps With Salesforce Mobile SDK SmartStore
Salesforce Developers
 
Building Integrated Marketing Reports and Dashboards
Building Integrated Marketing Reports and DashboardsBuilding Integrated Marketing Reports and Dashboards
Building Integrated Marketing Reports and Dashboards
dreamforce2006
 
Essential Habits for New Admins
Essential Habits for New AdminsEssential Habits for New Admins
Essential Habits for New Admins
Salesforce Admins
 
Trailhead Live: Essential Habits & Core Admin Responsibilities
Trailhead Live: Essential Habits & Core Admin ResponsibilitiesTrailhead Live: Essential Habits & Core Admin Responsibilities
Trailhead Live: Essential Habits & Core Admin Responsibilities
Salesforce Admins
 
Pardot Story: Beyond List Email
Pardot Story: Beyond List EmailPardot Story: Beyond List Email
Pardot Story: Beyond List Email
Pardot
 
System Overload - Getting Control of Your Data and Sanity
System Overload - Getting Control of Your Data and SanitySystem Overload - Getting Control of Your Data and Sanity
System Overload - Getting Control of Your Data and Sanity
dreamforce2006
 
System Overload: Getting Control of Your Data and Sanity
System Overload: Getting Control of Your Data and SanitySystem Overload: Getting Control of Your Data and Sanity
System Overload: Getting Control of Your Data and Sanity
dreamforce2006
 
Jacksonville, FL Salesforce Administrator Community Group June 2020 Deck
Jacksonville, FL Salesforce Administrator Community Group June 2020 DeckJacksonville, FL Salesforce Administrator Community Group June 2020 Deck
Jacksonville, FL Salesforce Administrator Community Group June 2020 Deck
Marc Lester
 
Ad

More from Salesforce Developers (20)

Sample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce DevelopersSample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce Developers
Salesforce Developers
 
Maximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component PerformanceMaximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component Performance
Salesforce Developers
 
Local development with Open Source Base Components
Local development with Open Source Base ComponentsLocal development with Open Source Base Components
Local development with Open Source Base Components
Salesforce Developers
 
TrailheaDX India : Developer Highlights
TrailheaDX India : Developer HighlightsTrailheaDX India : Developer Highlights
TrailheaDX India : Developer Highlights
Salesforce Developers
 
Why developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX IndiaWhy developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX India
Salesforce Developers
 
CodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local DevelopmentCodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local Development
Salesforce Developers
 
CodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web ComponentsCodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web Components
Salesforce Developers
 
Enterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web ComponentsEnterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web Components
Salesforce Developers
 
TrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsTrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer Highlights
Salesforce Developers
 
Live coding with LWC
Live coding with LWCLive coding with LWC
Live coding with LWC
Salesforce Developers
 
Lightning web components - Episode 4 : Security and Testing
Lightning web components  - Episode 4 : Security and TestingLightning web components  - Episode 4 : Security and Testing
Lightning web components - Episode 4 : Security and Testing
Salesforce Developers
 
LWC Episode 3- Component Communication and Aura Interoperability
LWC Episode 3- Component Communication and Aura InteroperabilityLWC Episode 3- Component Communication and Aura Interoperability
LWC Episode 3- Component Communication and Aura Interoperability
Salesforce Developers
 
Lightning web components episode 2- work with salesforce data
Lightning web components   episode 2- work with salesforce dataLightning web components   episode 2- work with salesforce data
Lightning web components episode 2- work with salesforce data
Salesforce Developers
 
Lightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An IntroductionLightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An Introduction
Salesforce Developers
 
Migrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCPMigrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCP
Salesforce Developers
 
Scale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in SalesforceScale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in Salesforce
Salesforce Developers
 
Replicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data CaptureReplicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data Capture
Salesforce Developers
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DX
Salesforce Developers
 
Get Into Lightning Flow Development
Get Into Lightning Flow DevelopmentGet Into Lightning Flow Development
Get Into Lightning Flow Development
Salesforce Developers
 
Integrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS ConnectIntegrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS Connect
Salesforce Developers
 
Sample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce DevelopersSample Gallery: Reference Code and Best Practices for Salesforce Developers
Sample Gallery: Reference Code and Best Practices for Salesforce Developers
Salesforce Developers
 
Maximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component PerformanceMaximizing Salesforce Lightning Experience and Lightning Component Performance
Maximizing Salesforce Lightning Experience and Lightning Component Performance
Salesforce Developers
 
Local development with Open Source Base Components
Local development with Open Source Base ComponentsLocal development with Open Source Base Components
Local development with Open Source Base Components
Salesforce Developers
 
TrailheaDX India : Developer Highlights
TrailheaDX India : Developer HighlightsTrailheaDX India : Developer Highlights
TrailheaDX India : Developer Highlights
Salesforce Developers
 
Why developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX IndiaWhy developers shouldn’t miss TrailheaDX India
Why developers shouldn’t miss TrailheaDX India
Salesforce Developers
 
CodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local DevelopmentCodeLive: Build Lightning Web Components faster with Local Development
CodeLive: Build Lightning Web Components faster with Local Development
Salesforce Developers
 
CodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web ComponentsCodeLive: Converting Aura Components to Lightning Web Components
CodeLive: Converting Aura Components to Lightning Web Components
Salesforce Developers
 
Enterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web ComponentsEnterprise-grade UI with open source Lightning Web Components
Enterprise-grade UI with open source Lightning Web Components
Salesforce Developers
 
TrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsTrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer Highlights
Salesforce Developers
 
Lightning web components - Episode 4 : Security and Testing
Lightning web components  - Episode 4 : Security and TestingLightning web components  - Episode 4 : Security and Testing
Lightning web components - Episode 4 : Security and Testing
Salesforce Developers
 
LWC Episode 3- Component Communication and Aura Interoperability
LWC Episode 3- Component Communication and Aura InteroperabilityLWC Episode 3- Component Communication and Aura Interoperability
LWC Episode 3- Component Communication and Aura Interoperability
Salesforce Developers
 
Lightning web components episode 2- work with salesforce data
Lightning web components   episode 2- work with salesforce dataLightning web components   episode 2- work with salesforce data
Lightning web components episode 2- work with salesforce data
Salesforce Developers
 
Lightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An IntroductionLightning web components - Episode 1 - An Introduction
Lightning web components - Episode 1 - An Introduction
Salesforce Developers
 
Migrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCPMigrating CPQ to Advanced Calculator and JSQCP
Migrating CPQ to Advanced Calculator and JSQCP
Salesforce Developers
 
Scale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in SalesforceScale with Large Data Volumes and Big Objects in Salesforce
Scale with Large Data Volumes and Big Objects in Salesforce
Salesforce Developers
 
Replicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data CaptureReplicate Salesforce Data in Real Time with Change Data Capture
Replicate Salesforce Data in Real Time with Change Data Capture
Salesforce Developers
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DX
Salesforce Developers
 
Integrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS ConnectIntegrate CMS Content Into Lightning Communities with CMS Connect
Integrate CMS Content Into Lightning Communities with CMS Connect
Salesforce Developers
 
Ad

Recently uploaded (20)

HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
 
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul Shares 5 Steps to Implement AI Agents for Maximum Business Efficien...
Noah Loul
 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
 
Cybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure ADCybersecurity Identity and Access Solutions using Azure AD
Cybersecurity Identity and Access Solutions using Azure AD
VICTOR MAESTRE RAMIREZ
 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
 
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything – Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
#StandardsGoals for 2025: Standards & certification roundup - Tech Forum 2025
BookNet Canada
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
IEDM 2024 Tutorial2_Advances in CMOS Technologies and Future Directions for C...
organizerofv
 

Programming the ExactTarget Marketing Cloud

  • 1. Programming the ExactTarget Marketing Cloud Dale McCrory, ExactTarget, Principal Product Manager, Fuel Platform google.com/+DaleMcCrory
  • 2. Safe harbor Safe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site. Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.
  • 3. ExactTarget Marketing Cloud As a customer, you can automate entire marketing campaigns, customize the ExactTarget application to your specific needs, or integrate ExactTarget with a variety of CRM, analytics, and other business software. As a partner, you can build or extend marketing applications and take those applications to market with ExactTarget via one of our platform-related partner programs. As a developer, the possibilities are endless.
  • 4. ExactTarget Fuel as part of Salesforce1 • Send email, SMS and push messages. • Personalize messages using data and content scripting. • Measure interaction and engagement (email opens & clicks, etc.). • Build apps that extend the Marketing Cloud.
  • 6. Customer touchpoints for developers Principle #1 Every email, every message, and every notification should be thought of as a customer touchpoint -- an opportunity to influence your customers and prospects.
  • 7. Customer touchpoints for developers Principle #2 Highly-targeted, relevant communication is as much a technology problem as it is a marketer's dilemma.
  • 19. Key Fuel system objects for email sending
  • 20. Marketing Cloud Fuel Objects mapped to Force.com Marketing Cloud Fuel Force.com Lists CRM Campaigns or Reports Data Extensions Objects Contacts (Subscribers) CRM Contacts List Subscription CRM CampaignMembers Data Extension Fields / Subscriber Attributes Data Extension Keys Object Fields Marketing Events CRM Contact Activities Relationships
  • 25. Free pizza for guessing the coin toss
  • 26. Free pizza for guessing the coin toss Visualization of saving a subscriber and a data extension Enroll RewardsMember Demographic Data • Rewards Member ID • First Name • Last Name • Zip Code Marketing List Vote CoinToss Data Extension Event Data • Rewards Member ID • TossVote
  • 27. Enrolling a new Rewards Members SubscriberKey EmailAddress First Name Last Name RegisteredDate $subscriber = new ET_Subscriber(); $subscriber->authStub = $myclient; $subscriber->props = array("SubscriberKey" => "12332432", "EmailAddress" => "[email protected]", "Lists" => array("ID" => $listID)); $subscriber->props['Attributes'] = array( array('Name' => 'First Name', 'Value' => 'John'), array('Name' => 'Last Name', 'Value' => 'Smith'), array('Name' => 'RegisteredDate', 'Value' => '12/01/2013 1:00pm’)); $postResponse = $subscriber->post();
  • 28. Enrolling a new Rewards Members SubscriberKey EmailAddress First Name Last Name RegisteredDate $subscriber = new ET_Subscriber(); $subscriber->authStub = $myclient; $subscriber->props = array("SubscriberKey" => "12332432", "EmailAddress" => "[email protected]", "Lists" => array("ID" => $listID)); $subscriber->props['Attributes'] = array( array('Name' => 'First Name', 'Value' => 'John'), array('Name' => 'Last Name', 'Value' => 'Smith'), array('Name' => 'RegisteredDate', 'Value' => '12/01/2013 1:00pm’)); $postResponse = $subscriber->post();
  • 29. Enrolling a new Rewards Members SubscriberKey EmailAddress First Name Last Name RegisteredDate $subscriber = new ET_Subscriber(); $subscriber->authStub = $myclient; $subscriber->props = array("SubscriberKey" => "12332432", "EmailAddress" => "[email protected]", "Lists" => array("ID" => $listID)); $subscriber->props['Attributes'] = array( array('Name' => 'First Name', 'Value' => 'John'), array('Name' => 'Last Name', 'Value' => 'Smith'), array('Name' => 'RegisteredDate', 'Value' => '12/01/2013 1:00pm’)); $postResponse = $subscriber->post();
  • 30. Enrolling a new Rewards Members SubscriberKey EmailAddress First Name Last Name RegisteredDate 12332432 John Smith 12/01/2013 1:00pm [email protected] $subscriber = new ET_Subscriber(); $subscriber->authStub = $myclient; $subscriber->props = array("SubscriberKey" => "12332432", "EmailAddress" => "[email protected]", "Lists" => array("ID" => $listID)); $subscriber->props['Attributes'] = array( array('Name' => 'First Name', 'Value' => 'John'), array('Name' => 'Last Name', 'Value' => 'Smith'), array('Name' => 'RegisteredDate', 'Value' => '12/01/2013 1:00pm’)); $postResponse = $subscriber->post();
  • 31. Storing the Rewards Member Vote event memberId tossVote $postDRRow = new ET_DataExtension_Row(); $postDRRow->authStub = $myclient; $postDRRow->Name = "CoinToss"; $postDRRow->props = array( ”memberId" => "12332432", "tossVote" => "heads” ); $postResponse = $postDRRow->post(); print_r($postResponse);
  • 32. Storing the Rewards Member Vote event memberId tossVote $postDRRow = new ET_DataExtension_Row(); $postDRRow->authStub = $myclient; $postDRRow->Name = "CoinToss"; $postDRRow->props = array( ”memberId" => "12332432", "tossVote" => "heads” ); $postResponse = $postDRRow->post(); print_r($postResponse);
  • 33. Storing the Rewards Member Vote event memberId tossVote $postDRRow = new ET_DataExtension_Row(); $postDRRow->authStub = $myclient; $postDRRow->Name = "CoinToss"; $postDRRow->props = array( ”memberId" => "12332432", "tossVote" => "heads” ); $postResponse = $postDRRow->post(); print_r($postResponse);
  • 34. Storing the Rewards Member Vote event memberId tossVote 12332432 heads $postDRRow = new ET_DataExtension_Row(); $postDRRow->authStub = $myclient; $postDRRow->Name = "CoinToss"; $postDRRow->props = array( ”memberId" => "12332432", "tossVote" => "heads” ); $postResponse = $postDRRow->post(); print_r($postResponse); SubscriberKey memberId
  • 36. Email code to myself Event TriggeredSend Email API Call CodeRequest CoinToss Send-Time Data in a Data Extension or Subscriber Attribute Data Extension RewardsMember Subscriber Attributes
  • 37. Email code to myself: Triggered send event Event: Trigger an email send and add personalization data ET_TriggeredSend ts = new ET_TriggeredSend(); ts.AuthStub = $myclient; ts.CustomerKey = "PromoCode"; ts.Subscribers = new ET_Subscriber[] { new ET_Subscriber() { emailAddress = "[email protected]", subscriberKey = "12332432”, promoCode = "f02020ddE" } }; SendReturn results = ts.Send();
  • 38. Email code to myself: Triggered send event Event: Trigger an email send and add personalization data ET_TriggeredSend ts = new ET_TriggeredSend(); ts.AuthStub = $myclient; ts.CustomerKey = "PromoCode"; ts.Subscribers = new ET_Subscriber[] { new ET_Subscriber() { emailAddress = "[email protected]", subscriberKey = "12332432”, promoCode = "f02020ddE" } }; SendReturn results = ts.Send();
  • 39. Email code to myself: Triggered send event Event: Trigger an email send and add personalization data ET_TriggeredSend ts = new ET_TriggeredSend(); ts.AuthStub = $myclient; ts.CustomerKey = "PromoCode"; ts.Subscribers = new ET_Subscriber[] { new ET_Subscriber() { emailAddress = "[email protected]", subscriberKey = "12332432”, promoCode = "f02020ddE" } }; SendReturn results = ts.Send();
  • 40. Email code to myself: Email personalization Substitution String and AMPScript in an Email Template Rendered Email Dear %%First Name%% %%Last Name%%, Dear John Smith, Your promo code for free pizza is: %%PromoCode%% Your promo code for free pizza is: f02020ddE Thanks for voting: %%=Lookup(“CoinToss”,”tossVote”,“memberId”,_subscriberKey)=%% Thanks for voting: Heads
  • 41. Email code to myself: Email personalization Substitution String and AMPScript in an Email Template Rendered Email Dear %%First Name%% %%Last Name%%, Dear John Smith, Your promo code for free pizza is: %%PromoCode%% Your promo code for free pizza is: f02020ddE Thanks for voting: %%=Lookup(“CoinToss”,”tossVote”,“memberId”,_subscriberKey)=%% Thanks for voting: Heads
  • 42. Email code to myself: Email personalization Substitution String and AMPScript in an Email Template Rendered Email Dear %%First Name%% %%Last Name%%, Dear John Smith, Your promo code for free pizza is: %%PromoCode%% Your promo code for free pizza is: f02020ddE Thanks for voting: %%=Lookup(“CoinToss”,”tossVote”,“memberId”,_subscriberKey)=%% Thanks for voting: Heads Data Source #1: Marketing List by Subscriber Key
  • 43. Email code to myself: Email personalization Substitution String and AMPScript in an Email Template Rendered Email Dear %%First Name%% %%Last Name%%, Dear John Smith, Your promo code for free pizza is: %%PromoCode%% Your promo code for free pizza is: f02020ddE Thanks for voting: %%=Lookup(“CoinToss”,”tossVote”,“memberId”,_subscriberKey)=%% Thanks for voting: Heads Data Source #1: Marketing List by Subscriber Key Data Source #2: Transactional Send Data
  • 44. Email code to myself: Email personalization Substitution String and AMPScript in an Email Template Rendered Email Dear %%First Name%% %%Last Name%%, Dear John Smith, Your promo code for free pizza is: %%PromoCode%% Your promo code for free pizza is: f02020ddE Thanks for voting: %%=Lookup(“CoinToss”,”tossVote”,“memberId”,_subscriberKey)=%% Thanks for voting: Heads Data Source #1: Marketing List by Subscriber Key Data Source #2: Transactional Send Data Data Source #3: Voting Data by SubscriberKey
  • 45. Mobile Messaging with Push Notifications
  • 46. Using push messaging as a customer touchpoint
  • 47. Using push messaging as a customer touchpoint POST https://www.exacttargetapis.com/push/v1/messageTag/OEl8ODow/send Authorization: Bearer exampletoken1 Content-Type: application/json { "InclusionTags": [ "Salesforce", "ExactTarget" ], "ExclusionTags": [ "Competitors" ], "Override": true, "MessageText": "Cloudy with a Chance of Customers - Now playing!", "Sound": "lightning.caf", "Badge": "+1", "OpenDirect": "OD01", "CustomPayload": "{ "availableSeats": "2 billion" }" }
  • 48. Using push messaging as a customer touchpoint POST https://www.exacttargetapis.com/push/v1/messageTag/OEl8ODow/send Authorization: Bearer exampletoken1 Content-Type: application/json { "InclusionTags": [ "Salesforce", "ExactTarget" ], "ExclusionTags": [ "Competitors" ], "Override": true, "MessageText": "Cloudy with a Chance of Customers - Now playing!", "Sound": "lightning.caf", "Badge": "+1", "OpenDirect": "OD01", "CustomPayload": "{ "availableSeats": "2 billion" }" }
  • 49. Using push messaging as a customer touchpoint POST https://www.exacttargetapis.com/push/v1/messageTag/OEl8ODow/send Authorization: Bearer exampletoken1 Content-Type: application/json { "InclusionTags": [ "Salesforce", "ExactTarget" ], "ExclusionTags": [ "Competitors" ], "Override": true, "MessageText": "Cloudy with a Chance of Customers - Now playing!", "Sound": "lightning.caf", "Badge": "+1", "OpenDirect": "OD01", "CustomPayload": "{ "availableSeats": "2 billion" }" }
  • 50. Using push messaging as a customer touchpoint POST https://www.exacttargetapis.com/push/v1/messageTag/OEl8ODow/send Authorization: Bearer exampletoken1 Content-Type: application/json { "InclusionTags": [ "Salesforce", "ExactTarget" ], "ExclusionTags": [ "Competitors" ], "Override": true, "MessageText": "Cloudy with a Chance of Customers - Now playing!", "Sound": "lightning.caf", "Badge": "+1", "OpenDirect": "OD01", "CustomPayload": "{ "availableSeats": "2 billion" }" }
  • 52. Using SMS messaging as a customer touchpoint
  • 53. Using SMS messaging as a customer touchpoint POST https://www.exacttargetapis.com/sms/v1/messageContact/MzA6Nzg6MA/send Authorization: Bearer exampletoken1 Content-Type: application/json { "mobileNumbers": [ "13175551212" ], "Subscribe": true, "keyword": "ALERTS", "messageText": "Text ALERTS to 12345 to receive new movie notifications via SMS.", "BlackoutWindow": { "UtcOffset": "-0500", "WindowStart": "1500", "WindowEnd": "2200" }, "SendTime": "2012-10-05 20:01" }
  • 54. Using SMS messaging as a customer touchpoint POST https://www.exacttargetapis.com/sms/v1/messageContact/MzA6Nzg6MA/send Authorization: Bearer exampletoken1 Content-Type: application/json { "mobileNumbers": [ "13175551212" ], "Subscribe": true, "keyword": "ALERTS", "messageText": "Text ALERTS to 12345 to receive new movie notifications via SMS.", "BlackoutWindow": { "UtcOffset": "-0500", "WindowStart": "1500", "WindowEnd": "2200" }, "SendTime": "2012-10-05 20:01" }
  • 55. Using SMS messaging as a customer touchpoint POST https://www.exacttargetapis.com/sms/v1/messageContact/MzA6Nzg6MA/send Authorization: Bearer exampletoken1 Content-Type: application/json { "mobileNumbers": [ "13175551212" ], "Subscribe": true, "keyword": "ALERTS", "messageText": "Text ALERTS to 12345 to receive new movie notifications via SMS.", "BlackoutWindow": { "UtcOffset": "-0500", "WindowStart": "1500", "WindowEnd": "2200" }, "SendTime": "2012-10-05 20:01" }
  • 56. Using SMS messaging as a customer touchpoint POST https://www.exacttargetapis.com/sms/v1/messageContact/MzA6Nzg6MA/send Authorization: Bearer exampletoken1 Content-Type: application/json { "mobileNumbers": [ "13175551212" ], "Subscribe": true, "keyword": "ALERTS", "messageText": "Text ALERTS to 12345 to receive new movie notifications via SMS.", "BlackoutWindow": { "UtcOffset": "-0500", "WindowStart": "1500", "WindowEnd": "2200" }, "SendTime": "2012-10-05 20:01" }
  • 57. Using SMS messaging as a customer touchpoint POST https://www.exacttargetapis.com/sms/v1/messageContact/MzA6Nzg6MA/send Authorization: Bearer exampletoken1 Content-Type: application/json { "mobileNumbers": [ "13175551212" ], "Subscribe": true, "keyword": "ALERTS", "messageText": "Text ALERTS to 12345 to receive new movie notifications via SMS.", "BlackoutWindow": { "UtcOffset": "-0500", "WindowStart": "1500", "WindowEnd": "2200" }, "SendTime": "2012-10-05 20:01" }
  • 62. Dale McCrory ExactTarget Principal Product Manager, Fuel Platform google.com/+DaleMcCrory