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:
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:
-
In CRXDE Lite, add a folder named
config
below your application folder. -
In the config folder, add a node named:
com.day.cq.wcm.notification.email.impl.EmailChannel
of typesling:OsgiConfig
-
Add a
String
property to the node namedemail.from
. For the value, specify the email address that you want to use. -
Click Save All.
Use the following procedure to define the node in your content package source folders:
-
In your
jcr_root/apps/*app_name*/config folder
, create a file namedcom.day.cq.wcm.notification.email.impl.EmailChannel.xml
-
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"/>
-
Replace the value of the
email.from
attribute (name@server.com
) with your email address. -
Save the file.