You can configure various notifications in your system to remind you of important activities.
To access notification setup, go to:
Home > Settings > Notification
To set up a Notification:
You can retrieve the data for a particular field by using doc.[field_name]
. To use it in your subject/message, you have to surround it with {% raw %}{{ }}{% endraw %}
. These are called Jinja tags. For example, to get the name of a document, you use {% raw %}{{ doc.name }}{% endraw %}
. The following example sends an email on saving a Task with the Subject, "TASK#### has been created"
Notifications allow you to set conditions according to the field data in your documents. For example, if you want to receive an Email if a Lead has been saved as "Interested" as it's status, you put doc.status == "Interested"
in the conditions textbox. You can also set more complex conditions by combining them with the operator and or or.
The above example will send a Notification when a Task is saved with the status "Open" and the "Expected End Date" for the Task is the date on or before the date on which it was saved on.
You can use both Jinja Tags ({% raw %}{{ doc.[field_name] }}{% endraw %}
) and HTML tags in the message textbox.
{% raw %}<h3>Order Overdue</h3>
<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>
<!-- show last comment -->
{% if comments %}
Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}
{% endif %}
<h4>Details</h4>
<ul>
<li>Customer: {{ doc.customer }}
</li><li>Amount: {{ doc.total_amount }}
</li></ul>{% endraw %}
Sometimes to make sure that the Notification is not sent multiple times, you can define a custom property (via Customize Form) like "Notification Sent" and then set this property after the alert is sent by setting the Set Property After Alertfield.
Then you can use that as a condition in the Condition rules to ensure emails are not sent multiple times
2. Setting the Recipients and Message
If you prefer to have your notifications sent to a dedicated Slack channel, you can also choose the option "Slack" in the channel options and select the appropriate Slack Webhook URL.
A Slack webhook URL is a URL pointing directly to a Slack channel.
To generate webhook URLs, you need to create a new Slack App:
3. Give your App a name and choose the right workspace. Once your app is created, go to the "Incoming Webhooks" section and add a new Webhook to Workspace. 4. Copy the created link, go back to OneOfficeERP and use it to create a new Slack Webhook URL in Integrations > Slack Webhook URL. 5. Select Slack and your Slack channel in the channel and Slack channel fields within your notification
Unlike Email messages, Slack doesn't allow HTML formatting.
Instead, you can use markdown formatting: Slack Documentation
Example: {% raw %}Order Overdue
Transaction {{ doc.name }} has exceeded Due Date. Please take the necessary action.
{% if comments %}
Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}
{% endif %}
*Details*
• Customer: {{ doc.customer }}
• Amount: {{ doc.grand_total }}
{% endraw %}
Choosing this channel will send a system notification when a notification is triggered, instead of an Email or a Slack notification.
Clicking on the notification routes to the Notification Log document which contains the configured subject, message as well as the attached file, if Attach Print is set:
If Email/Slack alerts and System Notifications both are required, the main channel can be set as Email or Slack and this option can be checked:
If you prefer to have your notifications sent to a WhatsApp number, you can also choose the option "WhatsApp" in the channel options and select the appropriate Twilio Number. Twilio Numbers can be added to Twilio settings. WhatsApp messages can only be sent to numbers which have country codes in them.
In order to configure Twilio settings, you need to first obtain Twilio credentials from your Twilio Account's account settings. You can only add those phone numbers that have been activated in your Twilio Account with WhatsApp access.
WhatsApp allows their users to only send those message templates that are pre-approved by them to your customers. Failure to do so might result in restrictions on you Twilio account.
In order to use this channel, you would need to complete the configuration of SMS Settings.