Skip to Content
Menu
This question has been flagged
1 Reply
1533 Views

How do I setup email notifications for when someone subscribes to mailing list or fills out the contact form?

I want Odoo to email me and let me know when both of the above actions take place.


Avatar
Discard
Best Answer

Hi,

One option is you can use odoo notifier and make the traceback in the view like adding

<div class="oe_chatter"> 

<field name="message_follower_ids" widget="mail_followers" groups="base.group_user"/>                                                   <field name="message_ids" widget="mail_thread"/> 

</div>

or just overide the subscribe button and make function to send email , whenever who have subscribed.

For outgoing mails you have to setup the outgoing mail sever in settings


Avatar
Discard