Configuring the Mail Service

For AEM to be able to send emails, the Day CQ Mail Service needs to be properly configured. You can view the configuration in the Web console. When working with AEM there are several methods of managing the configuration settings for such services; see Configuring OSGi for more details and the recommended practices.

The following constraints apply:

  • The SMTP server port must be 25 or higher.

  • The SMTP server host name must not be blank.

  • The “From” address must not be blank.

To help you debug an issue with the Day CQ Mail Service, you can watch the logs of the service:

com.day.cq.mailer.DefaultMailService

The configuration looks as follows in the Web console:

chlimage_1-276

Configuring the Email Notification Channel

When you subscribe to either page or forum events notifications, the from-email address is set to no-reply@acme.com per default. You can change this value by configuring the Notification Email Channel service in the Web Console.

To configure the from-email address, add a sling:OsgiConfig node to the repository. Use the following procedure to add the node directly using CRXDE Lite:

  1. In CRXDE Lite, add a folder named config below your application folder.

  2. In the config folder, add a node named:

    com.day.cq.wcm.notification.email.impl.EmailChannel of type sling:OsgiConfig

  3. Add a String property to the node named email.from. For the value, specify the email address that you want to use.

  4. Click Save All.

Use the following procedure to define the node in your content package source folders:

  1. In your jcr_root/apps/*app_name*/config folder, create a file named com.day.cq.wcm.notification.email.impl.EmailChannel.xml

  2. Add the following XML to represent the node:

    <?xml version="1.0" encoding="UTF-8"?> <jcr:root xmlns:sling="https://sling.apache.org/jcr/sling/1.0" xmlns:jcr="https://www.jcp.org/jcr/1.0" jcr:primaryType="sling:OsgiConfig" email.from="name@server.com"/>

  3. Replace the value of the email.from attribute ( name@server.com) with your email address.

  4. Save the file.