Salesforceから送信するメール本文を動的に変更する
Salesforceからメールを送信する方法は複数ありますが、今回はメールアラートに設定できる Visualforcメールテンプレート
を使います。
イメージ図
メールテンプレートを作成する際は Visualforce を選択する必要があります。
こちらはコンポーネントを呼び出すだけのシンプルなものです。
<messaging:emailTemplate subject="タイトル" relatedToType="Case">
<messaging:plainTextEmailBody >
<!-- コンポーネントの呼び出し、その際にCase.Idを引き渡す -->
<c:MailComp targetCaseId="{!relatedTo.Id}" />
</messaging:plainTextEmailBody>
</messaging:emailTemplate>
Visualforce メールテンプレートから渡された Case.Id
をコントローラー(Apexクラス)に渡すことで、必要な情報を作成するために使います。
rendered
を使うことで、メール内に表示するかどうかを判定しています。
<apex:component access="global" controller="MailCompExt">
<!-- VFテンプレートからCase.Idを取得 -->
<apex:attribute name="targetCaseId" type="Id" description="Case.Id" assignTo="{!caseId}" />
{!userName} 様
この度は{!subject}をお申し込みいただきありがとうございます。
<apex:outputText rendered="{!isToday}"><!-- レンダリングするかどうかをApexから取得 -->
いよいよ本日ですね。
</apex:outputText>
お待ちしています。
</apex:component>
コンポーネント内で動的に表示させたいテキストや、表示有無に関してはApexで管理します。
public class MailCompExt {
public Id caseId { get;
set {
// CaseIdを元にカスタムオブジェクトからデータを取得
}
}
public Boolean getIsToday() {
return true;
}
}
以上。
Author And Source
この問題について(Salesforceから送信するメール本文を動的に変更する), 我々は、より多くの情報をここで見つけました https://qiita.com/Sam/items/fa21ef2ec4db93814ac2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .