Loading
시스템 관리자에 대한 피싱 방지 MFA 및 전 직원사용자 MFA 적용 안내 더 많이 읽기
현재 다수의 문의가 발생하여 대응에 지연이 발생하고 있습니다.더 많이 읽기
Marketing Cloud Next
인상 영역 핸들보드 예

인상 영역 핸들보드 예

Handlebars 또는 AMPscript 함수를 사용하여 인식 영역을 구현하는 경우 이를 추적할 콘텐츠로 사용자 정의합니다. 다음 예는 몇 가지 일반적인 사용 사례를 다루며 핸들바를 사용하는 인식 영역에 대한 몇 가지 다른 구성을 보여줍니다.

필수 Edition

지원 제품: Marketing Cloud Next Growth 또는 Advanced Edition이 포함된 Salesforce EnterpriseUnlimited Edition

인식 영역의 Handlebars 및 AMPscript 함수에 대한 자세한 내용은 다음 개발자 문서를 참조하십시오.

예

단일 내용 블록

Ursa Solar Major의 마케터 Lance는 신규 구독자를 위한 환영 이메일 작업을 진행하고 있습니다. 이메일에 랜스에 새 고객에 대한 할인과 함께 랜딩 페이지에 연결되는 버튼이 포함되어 있습니다. Lance가 Solar 거래 찾아보기 버튼에 대한 클릭 횟수를 추적하려고 합니다. 구성 요소 설정의 버튼에 대해 인상 영역 추적을 설정하고 영역의 이름을 "새 고객 거래"로 지정합니다. 모든 것이 올바르게 표시되는지 확인하기 위해 랜스는 이메일의 코드 보기를 확인하고 인식 영역을 확인합니다.

<div>
  {{#impressionRegion "NewCustomerDeals"}} 
    <div><a href="https://ursasolar.com/springpromo">Browse Solar Deals</a></div>
  {{/impressionRegion}}
</div>
예

동적 콘텐츠

Ursa Solar Major의 마케터 Lance는 구독자에게 회사의 봄 프로모션 거래를 알려주는 이메일을 보내려고 합니다. 팀은 동적 콘텐츠 변형을 사용하여 관심 있는 시스템을 기반으로 구독자에게 이메일 콘텐츠를 대상으로 지정합니다. 랜스는 영향 영역 추적을 사용하여 콘텐츠 변형에 대한 참여를 보고하기로 결정합니다.

<div>
{{#if system="Residential"}}
    {{#impressionRegion "ResidentialHeading"}}
    Ready to invest in your home and your future?
    {{/impressionRegion}}
{{else if color="Commercial"}}
    {{#impressionRegion "CommercialHeading"}}
    Future-proof your business with solar energy!
    {{/impressionRegion}}
{{else}}
    {{#impressionRegion "Neither"}}
    Solar for all, savings for you!
    {{/impressionRegion}}
{{/if}}
<div>
예

동적 콘텐츠

Ursa Solar Major의 마케터 Lance와 팀은 작년에 구매한 주택 태양광 고객에게 이메일을 보내는 작업을 진행하고 있습니다. 이메일에 부속품 제품에 대한 링크가 포함되어 있으며 팀에서 클릭 참여를 보고하려고 합니다. 중첩된 이미지 영역을 사용하여 섹션 전체 및 각 개별 링크를 추적하기로 결정합니다.

<div>
  {{#impressionRegion "Accessories"}} 
    Want to get more out of your home system? Check out these upgrade options.
    Url-1a
  {{/impressionRegion}}
    <div>
      {{#impressionRegion "BatteryPacks"} 
        Bank your energy for a rainy day! Browse battery options to store excess energy from   your system.
<a href="https://ursasolar.com/products/batteries">Browse Batteries</a>
      {{/impressionRegion}}
      {{#impressionRegion "EVChargers"} 
        If you have or are considering an electric vehicle, take a look at the options for EV chargers that work with your system.
<a href="https://ursasolar.com/products/chargers">Browse Chargers</a>
      {{/impressionRegion}}

    </div>
  
</div>
 
로드 중
Salesforce Help | Article