1

I noticed that in the docs it's clearly mentioned that an email is sent when a page is submitted for moderators:

Email Notifications

WAGTAILADMIN_NOTIFICATION_FROM_EMAIL = ’wagtail@myhost.io’

Wagtail sends email notifications when content is submitted for moderation, and when the content is accepted or rejected. This setting lets you pick which email address these automatic notifications will come from. If omitted, Django will fall back to using the DEFAULT_FROM_EMAIL variable if set, and webmaster@localhost if not.

I tried locally, and an email is sent, but to the administrator users. Is it possible to change this behaviour and add more control over it? I need an email to be sent to the moderators users. The only way that I noticed for now is to override the save_revision method in the Page model

timo.rieber
  • 3,727
  • 3
  • 32
  • 47
Luke
  • 1,794
  • 10
  • 43
  • 70

1 Answers1

0

Email notifications are sent to all moderators (users with publish priviledges for the given page managed through groups and group memberships). See source code and an owners comment on github.

Side note: As of Wagtail 1.3.1 there is currently a bug sending notification emails which will be fixed in 1.4 released soon.

timo.rieber
  • 3,727
  • 3
  • 32
  • 47