cancel
Showing results for 
Search instead for 
Did you mean: 

Marketing template

Former Member
0 Kudos

Hey community,

Can any one give me the HTLM code for one template that I can edit the text pls? Im new in HTML so that template help me understand how it works.

Best regards,

Bruno Tiago

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Here it is and do modification inside the div

<html>

<body bgcolor="#C2C3CB">

<head>

<meta content="text/html; charset=utf-8" http-equiv="Content-Type">

</head>

<body>

<div class="editable">

<p>Hello #AccountName# ,

<p><a href="http://{/FormCampaignExecutionPlaceholder/LinkTracking/TrackingURI}www.google.com">Visit us</a></p>

<br>

<p><a href="mailto:{/FormCampaignExecutionPlaceholder/MailingPermissionDenyMailToURI}">Click here to be removed from future newsletters.</a></p>

</div>

</body>

</html>

Former Member
0 Kudos

Thank you Gabriele!

Best regards,

Bruno Tiago

Former Member
0 Kudos

You are Welcome Bruno, this is just a very simple template.

However, as you can see, the below text in bold refers to the mandatory placeholder to allow the contacted person to unsubscribe.

<p><a href="mailto:{/FormCampaignExecutionPlaceholder/MailingPermissionDenyMailToURI}">Click here to be removed from future newsletters.</a></p>


and the below bold text is to track events on the particular link

href="http://{/FormCampaignExecutionPlaceholder/LinkTracking/TrackingURI}www.google.com">Visit us</a></p>

Former Member
0 Kudos

Gabriele,

I have one more question, how I upload the images for the system for my code upload them?


Best regards,

Bruno Tiago

Former Member
0 Kudos

Is there an automated C4C process to update a customer marketing permission if they click on link to be removed from future mailings?

The example template only triggers a mail popup...

Answers (1)

Answers (1)

chandansb
Active Contributor
0 Kudos

Hello Bruno,

You can upload any HTML file as the template to be used. Below is the simple code for template. Save the code as .HTML and upload it.

<html>

<head>

<meta content="text/html; charset=utf-8" http-equiv="Content-Type">

</head>

<body>

<p>Please join us for the conference!</p>

<!-- <p><a href="mailto:{/FormCampaignExecutionPlaceholder/MailingPermissionDenyMailToURI}">Click here to be removed from future marketing mailings.</a></p> -->

<p><a href="http://{/FormCampaignExecutionPlaceholder/LinkTracking/TrackingURI}www.sap.com/HANA">News about SAP HANA</a></p>

<p><a href="mailto:{/FormCampaignExecutionPlaceholder/MailingPermissionDenyMailToURI}?subject=DenyMailingPermission">Click here to be removed from future marketing mailings.</a></p>

</body>

</html>

Regards,

Chandan

Former Member
0 Kudos

Thank you Chandan!

I have one more question, how I upload the images for the system for my code upload them?

Best regards,

Bruno Tiago

Former Member
0 Kudos

Images must be stored somewhere on the internet and the code is the following <img src="URL OF THE IMAGE" style="width:450px;height:120px;">

this must be inserted in the html where you want but this operation must be done outside C4C.  The style part of the code is to set dimension of the image inside your template.

Former Member
0 Kudos

Also works!

Thank you so much,

Bruno Tiago