Sending Email By AEM | Community
Skip to main content
Level 2
October 16, 2015
Solved

Sending Email By AEM

  • October 16, 2015
  • 13 replies
  • 12328 views

Hi,

I have a requirement for sending a Mail from AEM using email templates. I have to hit a aem servlet from external server with required parameters and then construct the email and using aem mail templates and cq mail service shoot the mail. Could anyone please help me with it.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by narayanank84409

Try to use HtmlEmail.class .

I hope this code will help you.

    MessageGateway<HtmlEmail> messageGateway = messageGatewayService.getGateway(HtmlEmail.class);
                HtmlEmail email = new HtmlEmail();
                email = mailTemplate.getEmail(StrLookup.mapLookup(emailProperties), HtmlEmail.class);
                List<InternetAddress> emailRecipients = new ArrayList<InternetAddress>();
                emailRecipients.add(new InternetAddress(request.getParameter("email")));
                email.setTo(emailRecipients);
                messageGateway.send(email);

13 replies

smacdonald2008
Level 10
October 16, 2015

Here is a community article that shows how to send email using the MessageGateway API:

https://docs.adobe.com/docs/en/cq/5-6-1/javadoc/com/day/cq/mailer/MessageGateway.html

Article: 

https://helpx.adobe.com/experience-manager/using/creating-custom-aem-workflow-steps.html

The email is sent as part of a custom workflow. Also - its only a text based email - it does not use a template. 

See this older community thread for good information about sending with a template: 

https://forums.adobe.com/thread/1107034?start=0&tstart=0

Level 8
October 16, 2015

I'm a big fan of the ACS Commons Email API (link below).

You can supply an email template and pass in key/value pairs to replace tokens within the template.

http://adobe-consulting-services.github.io/acs-aem-commons/features/email-api.html

smacdonald2008
Level 10
October 16, 2015

Create a custom sling servlet to handle the HTTP POST/GET operation. For information on creating sling servlets for AEM - see: 

https://helpx.adobe.com/experience-manager/using/custom-sling-servlets.html

See this older community thread for details on email/templates: 

Sending email with CQ

Level 2
October 16, 2015

In that i am having issue in the line

Email email = mailTemplate.getEmail(StrLookup.mapLookup(emailParams), emailClass);

 

I am getting

 

27.07.2015 18:56:08.227 *ERROR* [127.0.0.1 [1438003568172] GET /bin/servlet/mailservlet HTTP/1.1] org.apache.sling.engine.impl.SlingRequestProcessorImpl service: Uncaught Throwable
java.lang.LinkageError: loader constraint violation: when resolving method "com.day.cq.commons.mail.MailTemplate.getEmail(Lorg/apache/commons/lang/text/StrLookup;Ljava/lang/Class;)Lorg/apache/commons/mail/Email;" the class loader (instance of org/apache/felix/framework/BundleWiringImpl$BundleClassLoaderJava5) of the current class, com/aircanada/aem/email/impl/EmailServiceImpl, and the class loader (instance of org/apache/felix/framework/BundleWiringImpl$BundleClassLoaderJava5) for resolved class, com/day/cq/commons/mail/MailTemplate, have different Class objects for the type s/lang/text/StrLookup;Ljava/lang/Class;)Lorg/apache/commons/mail/Email; used in the signature
    at com.aircanada.aem.email.impl.EmailServiceImpl.getEmail(EmailServiceImpl.java:152)
    at com.aircanada.aem.email.impl.EmailServiceImpl.sendEmail(EmailServiceImpl.java:109)
    at com.aircanada.aem.email.impl.EmailServiceImpl.sendEmail(EmailServiceImpl.java:86)
    at com.aircanada.aem.email.EmailSevlet.doGet(EmailSevlet.java:66)
    error

Please help me with that.

Thanks,

Tushar

smacdonald2008
Level 10
October 16, 2015
Level 2
October 16, 2015

Yes I am following that, as it matched my requirement of sending a mail using a template.

Level 8
October 16, 2015

Did you install the ACS Commons package from here

narayanank84409
narayanank84409Accepted solution
Level 4
October 16, 2015

Try to use HtmlEmail.class .

I hope this code will help you.

    MessageGateway<HtmlEmail> messageGateway = messageGatewayService.getGateway(HtmlEmail.class);
                HtmlEmail email = new HtmlEmail();
                email = mailTemplate.getEmail(StrLookup.mapLookup(emailProperties), HtmlEmail.class);
                List<InternetAddress> emailRecipients = new ArrayList<InternetAddress>();
                emailRecipients.add(new InternetAddress(request.getParameter("email")));
                email.setTo(emailRecipients);
                messageGateway.send(email);

Level 2
October 16, 2015

No I didn't take this package, in my package it had all the java code for sending email

Level 2
October 16, 2015