Have a different template for sender confirmation email

Hi everyone,

With the Email plugin is it possible to have a different template for the sender confirmation email ?

One for the receiver and another one for the sender. Example: https://share.riseup.net/#XN8CyVlS8ysZ1e8O5GIMFQ.

Thanks!

You can have multiple email processes, so this should work. Did you try it?

I’ve done it like this(my contact.md file):


    process:
        -
            email: { from: '{{ config.plugins.email.from }}', to: '{{ form.value.email|e }}', subject: '[Your message to Charity Backpackers] {{ form.value.name|e }}', body: '{% include ''forms/contact-confirmation.html.twig'' %}' }
        -
            email: { from: '{{ config.plugins.email.from }}', to: '{{ config.plugins.email.from }}', subject: '[New request] from: {{ form.value.name|e }}', body: '{% include ''forms/contact-request.html.twig'' %}' }
        -
            save: { fileprefix: feedback-, dateformat: Ymd-His-u, extension: txt, body: '{% include ''forms/data.txt.twig'' %}' }

@AmauryH & @rhuk It works now.

My instinct told me to do what you suggested me … But the first time it didn’t work at all.

Thanks guys!