How to send email notifications for comments in Drupal 7 with actions & triggers (or the Rules module)

Rules module logo Do you have a Drupal 7 web site? Do you want to get an email when someone comments, so you don't have to check your site all the time? Don't panic! Here's how you do it.

You don't need to install any new modules to do this in Drupal 7. All that's needed is a little configuring and to copy and paste in a short bit of code.

Update: Both the easiest & most powerful way to get these notification emails (in Drupal 6 or 7) is to install and configure the Rules Module. NodeOne has a great set of video tutorials on their site explaining how to use the Rules module. I've also put example code for a Rules-based email notification in the comments to this post for both Drupal 6 and Drupal 7

 

Step 1: Getting started

Go to the Modules page, and make sure that you enable the Trigger module (at Modules > Trigger) and turn on Clean URLs (at Administer > Configuration > Search and metadata). These are core modules/settings in Drupal 7, so you don't have to install them, just turn them on.

enabled checkbox for Trigger on the Modules pagelocation of Clean URLs in administrative interface

Step 2: Taking action

Your next step will be to create an action, so that drupal can perform it when a comment is saved.

Go to Configuration > System > Actions.

Actions link shown on Configuration page

On the Actions page, choose the dropdown for Create an Advanced Action at the bottom of the page, and click on Send email and then Create.

create an advanced action dropdown with Send email highlighted

On the Configure an advanced action page, fill in the first 3 fields, as in these examples:

  • Label: Send an email notification to site owner upon comment save
  • Recipient: siteowner@adellefrank.com
  • Subject: New Comment at AdelleFrank.com

The trickiest part of this entire endeavor is filling in the Message field, but here's some easy sample code that you could just copy and paste in:
### Node
[comment:node:title] at: [site:url]node/[comment:node:nid]#comment-[comment:cid]

### Comment
[comment:author:name]
[comment:title]
[comment:body]

### Review
[site:url]admin/content/comment/approval

Those bits of code within square brackets are called tokens. Tokens are placeholders, little bits of code that represent commonly-used values. To find more tokens in Drupal 7, you must have two modules enabled. First, turn on the core Help module, which you should have enabled anyway...because it's helpful.  However, I find it bizarre that, even though you're only using tokens included in the Core, you must still install and turn on the Token module, too.

Only then can you point your web browser to the Help > Token page at http://www.yoursite.com/admin/help/token and get a list of all the tokens you can choose among.

Step 3: Triggering your action

At the top of the page, click on the Triggers link to go to the next step. This page can also be found underneath Structure > Triggers.

Triggers link shown at top of Actions page

Be sure to choose the comments tab on the Triggers page.

Comments tab shown at top of Triggers page

You have a number of choices, but since mine is a solo blog, Trigger: After saving a new comment seems most appropriate. Click on the dropdown instructing you to Choose an action and click underneath system on the name of the Action (Send an email notification to site owner upon comment save) you created in Step 2 and then click Assign.

action selected on dropdown for Trigger: After saving a new comment

successfully assigned action to trigger

Step 4: Testing your comments form

Now, as far as you know, your web site is set up to email you when someone saves a comment.  To be absolutely certain that your new action and trigger are working correctly, you need to test it.

Browse to any page, article, or blog post on your site and post a comment.

Check your email at the address you chose in step 2. Does this email give you the information you expected?

Remember to delete your test comment off of your site.

For more information

Comments

Adelle Frank

Sample Email notification code if using Rules in Drupal 7

Here is some sample code you might use in your tokenized email notification.

For the SUBJECT

[comment:hostname] ipsays: [comment:body]

For the MESSAGE

### Block [comment:hostname] IP at
[site-url]user/login?destination=admin/user/rules/add?mask=[comment:hostname] 
[site-url]admin/user/rules/add?mask=[comment:hostname]

### Approve this comment at 
[site-url]user/login?destination=admin/content/comment/approval
[site-url]admin/content/comment/approval

### Comment Title: 
"[comment:title]"

### Blog Post 
"[comment:node:title]"

### Comment Body 
[comment:body]

### Comment Author 
Email: [comment:mail]
URL: [comment:homepage]

Some Important Notes about this Code:

  • The mask in the Block IP address link doesn't work, it's just there for your reference, to make it easy to copy into the correct box on the add mask page.
  • I'm combining notices for both all comments into just one email notification, you might want to separate out Suspected SPAM comments from Probably Safe comments. For more details on SPAM and how you might use Rules to filter, see the comment below at: /blog/how-to-email-notifications-comments-drupal7#comment-1413

stuti

Email to multiple users

Hello, 
I am working in Drupal 7. I need to send an email to all the users of the site and for that I have used rules and trigger module.
But when I am adding a new action : "send message/email", there is only 1 field for the recipient. I need to multiple recipient so that whenever a new content is added in the site, email goes to all the users of the site.
Please help me on this.

Sean

Thanks!

I appreciate the write up!  Thanks!

Joe

Thank You!

Thanks so much for posting this tutorial. I tried using Rules, but this method was so much easier to implement.

Juicy Couture

Very helpful, Adelle! Many

Very helpful, Adelle! Many thanks for looking into this for me. (and thank you for including the relevant links to the specific modules needed to make this work!)

Ade

Now, I wish that I had found

Now, I wish that I had found your very well written article two weeks ago, before I went through figuring this out for myself. It would have saved me some trial, error, and head-scratching, which seems to be very common since I started using Drupal!

Adelle Frank

Glad you found this...

 I, too, wish it had been sooner :)

Visitor

Send to all users

Thanks for this tutorial. My question is can it be used to send an email to all users, not just the site owner.
Or, how can one send an email to all users when something new is posted, article, blog, comment?
Many thanks
Michael

Visitor

Send to all users of a role

Again, thanks for this. It works great, I am at least now able to be notified when there is a new post so I don't have to keep checking. For now, I simply send an email to all users (outside of Drupal). So, the users get notified by me when there is a new post. But, my goal is for this to all happen automatically within Drupal.
I am using Drupal 7 and my hosting server is using php 5.2.9, so the Messaging Framework is not available.
I am wondering if I can send an email to everyone in a certain role, e.g. 'Authenticated User', which would satisfy my need.
If not, I will take your suggestion and investigate using the Rules Module
Cheers,
Michael