SlideShare a Scribd company logo
1 of 63
Download to read offline
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
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
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
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

More Related Content

What's hot

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 ConnectCloud_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 BuilderSalesforce 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 CloudThinqloud
 
Sponsor Presentation: SalesForce Marketing Cloud
Sponsor Presentation: SalesForce Marketing CloudSponsor Presentation: SalesForce Marketing Cloud
Sponsor Presentation: SalesForce Marketing CloudOmari 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 cloudSalesforce.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 developmentAmit Chaudhary
 
Salesforce for Marketing Overview Deck
Salesforce for Marketing Overview DeckSalesforce for Marketing Overview Deck
Salesforce for Marketing Overview DeckSylvia 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 JourneysSalesforce 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 IntegrationsSalesforce 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 MessagingCloud_Services
 
CNX16 - Getting Started with Social Studio
CNX16 - Getting Started with Social StudioCNX16 - Getting Started with Social Studio
CNX16 - Getting Started with Social StudioCloud_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
 

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)
 
How Salesforce Uses Marketing Cloud
How Salesforce Uses Marketing Cloud  How Salesforce Uses Marketing Cloud
How Salesforce Uses Marketing Cloud
 
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
 
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
 
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
 
Sponsor Presentation: SalesForce Marketing Cloud
Sponsor Presentation: SalesForce Marketing CloudSponsor Presentation: SalesForce Marketing Cloud
Sponsor Presentation: SalesForce Marketing Cloud
 
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 !!
 
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
 
Flexible Frameworks: A Springboard to Sophistication
Flexible Frameworks: A Springboard to Sophistication Flexible Frameworks: A Springboard to Sophistication
Flexible Frameworks: A Springboard to Sophistication
 
How to optimize salesforce marketing cloud
How to optimize salesforce marketing cloud How to optimize salesforce marketing cloud
How to optimize salesforce marketing cloud
 
Marketing cloud development
Marketing cloud developmentMarketing cloud development
Marketing cloud development
 
Salesforce for Marketing Overview Deck
Salesforce for Marketing Overview DeckSalesforce for Marketing Overview Deck
Salesforce for Marketing Overview Deck
 
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 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
 
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
 
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 ...
 
CNX16 - 1:1 Email Messaging
CNX16 - 1:1 Email MessagingCNX16 - 1:1 Email Messaging
CNX16 - 1:1 Email Messaging
 
CNX16 - Getting Started with Social Studio
CNX16 - Getting Started with Social StudioCNX16 - Getting Started with Social Studio
CNX16 - Getting Started with Social Studio
 
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...
 
How Salesforce Uses the Marketing Cloud
How Salesforce Uses the Marketing CloudHow Salesforce Uses the Marketing Cloud
How Salesforce Uses the Marketing Cloud
 

Similar to Programming the ExactTarget Marketing Cloud

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 deepdiveKishore B T
 
How Salesforce.com Uses Marketing
How Salesforce.com Uses MarketingHow Salesforce.com Uses Marketing
How Salesforce.com Uses Marketingdreamforce2006
 
Aan009 Contreras 091907
Aan009 Contreras 091907Aan009 Contreras 091907
Aan009 Contreras 091907Dreamforce07
 
Developing Apex Triggers for Chatter
Developing Apex Triggers for ChatterDeveloping Apex Triggers for Chatter
Developing Apex Triggers for ChatterSalesforce Developers
 
ABC of Einstein Analytics
ABC of Einstein AnalyticsABC of Einstein Analytics
ABC of Einstein Analyticsrikkehovgaard
 
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 CloudSalesforce 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 Analyticsrikkehovgaard
 
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 SalesforceSalesforce 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 SmartStoreSalesforce Developers
 
Building Integrated Marketing Reports and Dashboards
Building Integrated Marketing Reports and DashboardsBuilding Integrated Marketing Reports and Dashboards
Building Integrated Marketing Reports and Dashboardsdreamforce2006
 
Essential Habits for New Admins
Essential Habits for New AdminsEssential Habits for New Admins
Essential Habits for New AdminsSalesforce 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 ResponsibilitiesSalesforce Admins
 
Pardot Story: Beyond List Email
Pardot Story: Beyond List EmailPardot Story: Beyond List Email
Pardot Story: Beyond List EmailPardot
 
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 Sanitydreamforce2006
 
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 Sanitydreamforce2006
 
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 DeckMarc Lester
 

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
 
How Salesforce.com Uses Marketing
How Salesforce.com Uses MarketingHow Salesforce.com Uses Marketing
How Salesforce.com Uses Marketing
 
Introduction to Data.com APIs
Introduction to Data.com APIsIntroduction to Data.com APIs
Introduction to Data.com APIs
 
Aan009 Contreras 091907
Aan009 Contreras 091907Aan009 Contreras 091907
Aan009 Contreras 091907
 
Developing Apex Triggers for Chatter
Developing Apex Triggers for ChatterDeveloping Apex Triggers for Chatter
Developing Apex Triggers for Chatter
 
ABC of Einstein Analytics
ABC of Einstein AnalyticsABC of Einstein Analytics
ABC of Einstein Analytics
 
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
 
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...
 
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
 
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
 
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
 
Building Integrated Marketing Reports and Dashboards
Building Integrated Marketing Reports and DashboardsBuilding Integrated Marketing Reports and Dashboards
Building Integrated Marketing Reports and Dashboards
 
Beyond Custom Metadata Types
Beyond Custom Metadata TypesBeyond Custom Metadata Types
Beyond Custom Metadata Types
 
Essential Habits for New Admins
Essential Habits for New AdminsEssential Habits for New Admins
Essential Habits for New 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
 
Pardot Story: Beyond List Email
Pardot Story: Beyond List EmailPardot Story: Beyond List Email
Pardot Story: Beyond List Email
 
ODSC_v3.3
ODSC_v3.3ODSC_v3.3
ODSC_v3.3
 
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
 
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
 
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
 

More from 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 DevelopersSalesforce 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 PerformanceSalesforce 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 ComponentsSalesforce Developers
 
TrailheaDX India : Developer Highlights
TrailheaDX India : Developer HighlightsTrailheaDX India : Developer Highlights
TrailheaDX India : Developer HighlightsSalesforce 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 IndiaSalesforce 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 DevelopmentSalesforce 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 ComponentsSalesforce 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 ComponentsSalesforce Developers
 
TrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsTrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsSalesforce 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 TestingSalesforce 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 InteroperabilitySalesforce 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 dataSalesforce 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 IntroductionSalesforce 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 JSQCPSalesforce 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 SalesforceSalesforce 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 CaptureSalesforce Developers
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DXSalesforce 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 ConnectSalesforce Developers
 

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
 
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
 
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
 
TrailheaDX India : Developer Highlights
TrailheaDX India : Developer HighlightsTrailheaDX India : Developer Highlights
TrailheaDX India : Developer Highlights
 
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
 
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
 
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
 
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
 
TrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer HighlightsTrailheaDX and Summer '19: Developer Highlights
TrailheaDX and Summer '19: Developer Highlights
 
Live coding with LWC
Live coding with LWCLive coding with LWC
Live coding with LWC
 
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
 
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
 
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
 
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
 
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
 
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
 
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
 
Modern Development with Salesforce DX
Modern Development with Salesforce DXModern Development with Salesforce DX
Modern Development with Salesforce DX
 
Get Into Lightning Flow Development
Get Into Lightning Flow DevelopmentGet Into Lightning Flow Development
Get Into Lightning Flow Development
 
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
 

Recently uploaded

Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsPrecisely
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsAndrey Dotsenko
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsHyundai Motor Group
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Neo4j
 

Recently uploaded (20)

Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power Systems
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter RoadsSnow Chain-Integrated Tire for a Safe Drive on Winter Roads
Snow Chain-Integrated Tire for a Safe Drive on Winter Roads
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024Build your next Gen AI Breakthrough - April 2024
Build your next Gen AI Breakthrough - April 2024
 

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.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 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
  • 22.
  • 23.
  • 24.
  • 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" => "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();
  • 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" => "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();
  • 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" => "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();
  • 30. 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();
  • 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
  • 35.
  • 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 = "myemail@mycompany.com", 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 = "myemail@mycompany.com", 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 = "myemail@mycompany.com", 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