コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

AEM Email services

Avatar

Level 1

Hi,

We are currently using AEM Email Services(acs-aem-commons-bundle-3.18.2.jar) for sending out an html email. 

 

Example code:

 

Using the Email API to send mails

The EmailService is an OSGi service and can be injected using @reference in the calling class.

	@Reference
	EmailService emailService;

	emailService.sendEmail(templatePath, emailParams, recipients);



 

Our email template is like below

en.html:

From: admin@adobe.com
Subject: Greetings
CC: ${ccrecipient}
BCC: ${bccrecipient}

<div style="color: blue;">

Hello ${recipientName}

Find your message here: ${message}

From,
Adobe Team

 

 

Could you please clarify how to include conditional field in this email template. Like, we need to add a condition like below as like velocity or freemarker email templates.

 

if condition 1 then {$message} else {$message2}

 

Please assit.

1 受け入れられたソリューション

Avatar

正解者
Community Advisor and Adobe Champion

@developerssp_48,

There aren't any clever things you can do with the ACS Commons Email feature to dynamically render your HTML email template other than having different variations of templates, example:

 

if (emailParms.containsKey("offers") && emailParms.get("offers") != null) {
   emailService.sendEmail(emailTplOffers, emailParams, recipients);
} else {
   emailService.sendEmail(emailTplGeneric, emailParams, recipients);
}

 

 Hope this helps,

Brian.

元の投稿で解決策を見る

1 返信

Avatar

正解者
Community Advisor and Adobe Champion

@developerssp_48,

There aren't any clever things you can do with the ACS Commons Email feature to dynamically render your HTML email template other than having different variations of templates, example:

 

if (emailParms.containsKey("offers") && emailParms.get("offers") != null) {
   emailService.sendEmail(emailTplOffers, emailParams, recipients);
} else {
   emailService.sendEmail(emailTplGeneric, emailParams, recipients);
}

 

 Hope this helps,

Brian.