itflow-org / itflow

Free and open-source web application for MSPs. Unifies IT documentation, ticketing, invoicing.
https://itflow.org
GNU General Public License v3.0
525 stars 143 forks source link

Email Template Editor #978

Open jack-10000 opened 2 weeks ago

jack-10000 commented 2 weeks ago

I have added an email template editor with TinyMCE to Admin > Settings > Mail. This allows an admin to edit the email templates for all customer-facing email bodies and subjects in ITFlow.

Shortcode support allows you to add things like [company_name] or [ticket_prefix] to insert those values into your template body or subject. You can also insert something like [[ticket_prefix][ticket_number]] or [[company_name]] too. Shortcodes are converted to $variables if they match a predefined list in the prepareEmailTemplateTags function in functions.php.

There is an 'email-templates-sample.sql' file containing sample templates that are ready to use and will update the DB structure necessary.