Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
report_list:other_transmission_methods [2024/12/18 01:10]
optrix
report_list:other_transmission_methods [2024/12/18 01:34] (current)
optrix
Line 13: Line 13:
 Several email transmission methods are pre-installed with the addon. These include **Azure Email Communication Services**, **Postmark** and several others. Several email transmission methods are pre-installed with the addon. These include **Azure Email Communication Services**, **Postmark** and several others.
  
-When the system sends mail from this point forwardit will not use the internal SMTP email method. Instead, it will call a script called **push_**//method//**.py** in your **integrations** directory.+When you select a transmission method from the setting pageyour Reporting addon will use that method instead of SMTP.
  
-===Custom Settings=== +Note that some methods will require settings, such as API keys or server URLs. 
- +
-Note that the script might require some settings, such as API keys or server URLs. +
  
 We've included web-based UIs for all of the integration methods that ship with the ReportList addon, allowing you to easily set up any of the pre-existing methods once you've [[installing libraries|installed the required libraries]]. We've included web-based UIs for all of the integration methods that ship with the ReportList addon, allowing you to easily set up any of the pre-existing methods once you've [[installing libraries|installed the required libraries]].
 +
 +===Customising===
 +
 +The individual methods for delivering email are Python scripts. In your report addon folder, you'll find a directory called **integrations** which contains a number of scripts used to deliver reports.
 +
 +Email delivery methods all have the name **push_**//method//**.py**. For example, **push_postmark.py** is the file used to transmit email via Postmark.
 +
 +You can create your own, custom methods to transmit reports.
  
 For custom sending methods, you can add any settings (such as API keys, FROM addresses etc) in the **Other Keyword Settings** section. For custom sending methods, you can add any settings (such as API keys, FROM addresses etc) in the **Other Keyword Settings** section.
Line 31: Line 37:
 {{othersettings.png|400}} {{othersettings.png|400}}
  
-You can also [[create your own mail push handler|create your own push script]] to send messages via whatever service you prefer.+Discover how to [[create your own mail push handler|create your own mailing script]] to send messages via whatever service you prefer.