8.0.1releasedEmail Template Manager

Emails need pages no more

Clone URLhttps://github.com/michael-e/email_template_manager.git

Add as a submodulegit submodule add https://github.com/michael-e/email_template_manager.git extensions/email_template_manager --recursive

Compatibility

2.x.x2.1.x2.2.x2.3.x2.4.x2.5.x2.6.x2.7.02.7.12.7.22.7.32.7.42.7.52.7.62.7.72.7.82.7.92.7.10
NoNoNo5.17.3.37.3.37.3.38.0.18.0.18.0.18.0.18.0.18.0.18.0.18.0.18.0.18.0.18.0.1

Readme

Email Template Manager

  • Author: Huib Keemink (@creativedutchmen)
  • Current maintainer: Michael Eichelsdoerfer (@michael-e)

A note on compatibility: Releases > 7.3.3 officially require Symphony 2.7.x only because they implement the "Ignore attachment errors" option (see below). If you don't care about this checkbox having no effect, you can use the latest and greatest ETM with Symphony 2.6.x. (It might even work down to Symphony 2.4.0.)

Contents

  • 1. What's this?
  • 2. Understanding the basics
    • 2.1 Templates and layouts
    • 2.2 Subject, recipients and reply-to
    • 2.3 Parameters
  • 3. Tutorial: Contact Form

1. What's this?

Using this extension it is possible to let Symphony send pretty emails using XSLT.

2. Understanding the basics

Before using this extension, you should be familiar with the Symphony CMS. If you are not comfortable with datasources, events and parameters, please read the Symphony docs first.

2.1 Templates & layouts

Templates created by this extension are similar to traditional Symphony pages. Just like with normal pages, you can attach datasources, whose XML you can process using XSLT.

However, there are a few differences, too. Most emails will consist of two layouts: HTML and Plain. Every template created by the ETM has the option to select one or two layouts. For each layout, you will be able to set an XSLT template.

Warning: although it is possible, sending HTML-only templates is not recommended!

2.2 Subject, recipients, from, reply-to and attachments

The subject, from and reply-to settings in the config panel can contain XPath and parameters. If your XPath returns more than one piece of data, only the first result is used - you can not have more than one subject, for example.

For the recipients field, on the other hand, you can select more than one recipient with a single piece of XPath. You can use the Name <[email protected]>, username, <[email protected]> and "Name" <[email protected]> syntaxes. Also, you can mix sources by combining queries with a comma: username, [email protected], {/data/recipients/entry/email} will create a valid list.

You may override Symphony's "From Name" and "From Email Address" preferences. Changing the name can often be useful, but faking the email address is dangerous and will not work (or be restricted to certain addresses) with most SMTP accounts. Even if this works, you must be aware of possible implications in spam filters etc. Please consider this a "Pro" feature.

For attachments, you may specify a comma-separated list of local file paths starting from the DOCROOT, e.g. /workspace/media/foo.pdf. It is also possible to include dynamic parts, e.g. using a (filtered) datasource: /workspace/media/order-confirmations/order-{/data/order-confirmations/entry/@id}.pdf. Like with the subject or reply-to settings, only the first matching node of an XPath expression is used.

Warning: it is not possible to mix the parameters and xpath syntax in one query: {/data/$param} will not work.

Tick the checkbox "Ignore attachment errors" if you like an email to be sent even if an attachment can not be loaded. This is useful if your email source contains an optional file upload, for example.

Starting with version 7.5.0 ETM also allows HTTP(S) URLs for attachments, with a slight restriction: URLs must not contain commas, because the comma is supposed to be the separator for multiple attachments. It is possible, however, to mix local paths and URLs in the attachments string.

Loading attachments via HTTP(S) can be rather inefficient. For mass emails (using the Email Newsletter Manager) it is strongly recommended to download all static files once and define them using the local path.

2.3 Parameters (event filters only!)

If you are using filters, the ETM will automatically add a few parameters that you can use to filter your datasources:

  • $etm-entry-id will contain the id of the entry inserted by the event. You can use this parameter to filter a datasource and to email the data entered by the user. We will see this in action in the Contact Form in the Tutorials section of this manual.
  • $etm-recipient will contain the email address of the recipient of the email. If you are sending to more than one person, the ETM will loop over your recipients, and set this value for every email. Again, you will be able to filter your datasources with this parameter to include more information about the recipient.

3. Tutorial: Contact Form

Using symphony and the "Send Notification Email" filter, it was already possible to send a quick preview of a response in a contact form. With ETM you are able to take this concept a few steps further.

In this tutorial we will:

  • Send an email to an author in the symphony installation with a summary of the data in the contact form.
  • Email the visitor that his request for information has been received.

3.1 Setting up the section

To store all requests, we will create a section called 'Responses'. Add three fields to this section: Name (text-input, required), Email (text-input, email, required) and Body (textarea).

3.2 Setting up the datasources

Because we want our email to the author to contain pieces of the response, we will have to create a new datasource called 'Responses' that gets its information from the 'Responses' section. At this moment, this datasource will return all responses ever created. This is not what we want - we want to only load the response we are emailing the author about.

To do this, the ETM has a parameter you can use to filter your datasource: $etm-entry-id, this will contain the entry id of the entry created by the event. You can filter your datasource using this parameter (remember to filter by System ID).

In the email, we want to include the body, the email address and the name of the response, so include those in your Included Elements selectbox.

3.3 Setting up the first template settings (notification)

Now that we have created our section and our datasource, we can use this data to create a nice-looking email. To do this, create a new Email Template (Blueprints->Email Templates->Create New).

This first email will be sent to the author, and will notify the author of a new response created. A nice name for this template can be 'Response-Notification'.

Next, select your 'Responses' datasource we created before in the Datasources selectbox.

To keep things simple, select Plain only in the Layouts dropdown menu. If you want, you can also create a HTML template here, all the concepts are the same.

Now for the interesting part. In the normal "Send Notification Email" filter, the subject would be predefined and static. With the ETM, you can set your own subject, and it can be dynamic, too. To see what happens, use A new response has been posted by {/data/responses/entry/name} as your subject. In this example, we have used the recipients name in the subject, creating a subject like: A new response has been posted by Huib Keemink, cool eh?

Next, in the Recipients box, you can type the username of an author in Symphony. In my installation this is huib, but it can be anything that you have set. For more information about how to use the Recipients box, please look at section 2.2 of this manual.

We have now setup all required settings for the Template, but there are two options left: Reply-To Name and Reply-To Email Address. To make replying extra easy, we can set these to contain the visitor's name and email. To do this, simply use {/data/responses/entry/name} in the Reply-To Name field, and {/data/responses/entry/email} in the Reply-To Email Address field.

3.4 Setting up the first template layout (notification)

Now that we have configured the template to have a proper name, be sent to the right email address, have a descriptive subject and make replying extra easy, it's time to create our layout.

Because we are only sending a plain email, you will have to configure only the Plain layout. In the Body textarea, you can insert your XSLT that will eventually be sent to the email address you provided. Below is an example of what you could use:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="text"
    omit-xml-declaration="yes"
    encoding="UTF-8"
    indent="no"/>

<xsl:template match="/">
    Woohoo! Somebody wants information from us!

    To be more precise, <xsl:value-of select="/data/responses/entry/name"/> asked this:

    <xsl:value-of select="/data/respones/entry/body"/>

    ---------------------------
    To respond, you can send an email to: <xsl:value-of select="/data/responses/entry/email"/> or reply to this email.

</xsl:template>

</xsl:stylesheet>

3.5 Setting up the second template settings (thank you message)

First, create a new email template, and name it Response Thankyou. For this template, we can do pretty much all you want, the only thing that is really important is the recipients setting. Because we want this template to be sent to the sender of the form, we can use some XPath to select the email from the event.

The ETM does not directly include the POST data in the event XML, so {/data/events/_eventname_/post-data} will not work.

However, since we have already filtered the Responses datasource to only display this piece of information, we can use that. So, in the recipients pane, type: {/data/responses/entry/name} <{/data/responses/entry/email}>.

3.6 Setting up the second template layout (thank you message)

We have now setup this template, all we need to do is edit the layout of this email. (The corresponding XSLT files are in /workspace/email-templates.)

If you have selected to use only a Plain layout, as you did with the notification template, you can use something like this for the layout XSLT:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="text"
    omit-xml-declaration="yes"
    encoding="UTF-8"
    indent="no"/>

<xsl:template match="/">
    Dear <xsl:value-of select="/data/responses/entry/name"/>,

    Thank you for your interest in <xsl:value-of select="$website-name"/>.
    We have received your inquiry, and will respond as quick as we can - usually within 24 hours.

    Regards,

    The ETeaM
</xsl:template>

</xsl:stylesheet>

3.7 Setting up the event

Ok, so we have setup our section, our datasource and our template, let's make it work!

In the event editor, select your templates in the list of event filters (they will be named Send Email Template: Response-Notification and Send Email Template: Response Thankyou).

Now we are nearly done setting everything up, all we need to do is attach the event to a page and include the form (as usual).

If everything went OK, submitting the form with a valid email should send out two emails: one to an author on the website, and one to the sender of the form. If it doesn't, please report your bugs at the bugtracker

3.8 Conclusion

In this (short) tutorial, we have looked at some of the basics of the ETM: creating templates, editing the layouts, setting dynamic recipients, subjects and reply-to headers.

This tutorial has been written with the questions asked on the forum in mind. If you feel some parts have not been explained well, or should be added, feel free to post your remarks.

Version history

Symphony 2.7.0 to 2.7.x

  • #98: Superfluous "missing recipient" messages in log file

Symphony 2.7.0 to 2.7.x

  • Add note on compatibility to the README
  • #96: Always interpret commas as attachment separators
  • Implement "from" logic (fake "From" header field)
  • Improve structure and formatting of README

Symphony 2.7.0 to 2.7.x

  • Prevent undefined index

Symphony 2.7.0 to 2.7.x

  • PHP 7.2 compatibility

Symphony 2.7.0 to 2.7.x

  • Add delegates before and after output generation
  • Remove php-min and php-max attributes

Symphony 2.7.0 to 2.7.x

  • Do not return false when parsing properties (#94)

Symphony 2.7.0 to 2.7.x

  • Allow HTTP(S) URLs for attachments

Symphony 2.7.0 to 2.7.x

  • Allow attachments to be optional (requires Symphony 2.7)

Symphony 2.4.0 to 2.6.x

  • Several fixes and improvements

Symphony 2.4.x to 2.6.x

  • Minor fixes, cleanup

Symphony 2.4.x to 2.6.x

  • Supported on PHP 7
  • Fix compilation error with preview for Windows and Unix (see #2375)
  • Fix params when override parent

Symphony 2.4.x to 2.6.x

  • Implement attachments logic

Symphony 2.4.x to 2.6.x

  • Fix for adding POST parameters when field has an array/complicated structure (thanks @jonmifsud)
  • Fix recipients parsing; split string after (not before) XPath parsing (thanks @jonmifsud)

Symphony 2.4.x to 2.6.x

  • Code formatting and minor fixes
  • Added support for different admin URL
  • Marked as compatible with Symphony 2.x.x

Requires Symphony 2.4

  • Be more careful with variable type.

Requires Symphony 2.4

  • Modernized code formatting.
  • Fixed issue with duplicate emails (#80).

Requires Symphony 2.4

  • Removed XSLT editors.

Requires Symphony 2.4

  • Fix for #72: Use method detection for retrieving the author object.

Requires Symphony 2.4

  • Bugfix: Fatal error when saving templates

Requires Symphony 2.4

  • Bugfixes
  • Symphony 2.4 compatibility

Requires Symphony 2.3

  • Include Post Data as Params (thanks @korelogic)

Requires Symphony 2.3

  • 2.3 compatibility, finally.

Requires Symphony 2.2.3

  • Added 2.3 compatibility

Symphony 2.2.1 to 2.2.x

Symphony 2.2.1 to 2.2.x

  • Made template inlcude paths work as expected. Requires updating include paths!

Symphony 2.2.1 to 2.2.x

  • Added looping over recipients, so multiple customised emails are possible
  • Moved filter preferences from POST values to configuration menu
  • Added recipients and reply-to values to generate() function
  • Added compatibility with the Members extension

Symphony 2.2.1 to 2.2.x

  • Fixed sorting order of event filters
  • Fixed bug with field[] syntax in frontend
  • Fixed bug with demo code with more than one template installed

Symphony 2.2.1 to 2.2.x

  • SQL Injection flaw fixed

Symphony 2.2.1 to 2.2.x

  • Event filters are supported, so custom events are no longer needed to send emails.
  • It is possible to select which layouts to use (Html, Plain or both).

Symphony 2.2.1 to 2.2.x

  • Initial release.