digital-marketing-framework / typo3-distributor-mail
Mail delivery system based on Digital Marketing Framework
Installs: 1 683
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:typo3-cms-extension
Requires
- php: ^8.1
- digital-marketing-framework/distributor-mail: ^2.2.1
- digital-marketing-framework/typo3-distributor-core: ^2.2.2
- digital-marketing-framework/typo3-template-engine-twig: ^2.1
- typo3/cms-core: ^11.5 || ^12.4
Requires (Dev)
README
EXT:dmf_distributor_mail is providing a destination for EXT:dmf_distributor_core, which handles form submissions for various endpoints.
It will send the form data via email.
Setup
All basic settings, explained in EXT:dmf_distributor_core, (including the overwrite mechanics) apply to this extension as well.
Subject
Sets the message subject
Default: 'New Form Submission'
Sender
Set the sender for this message.
Default: ''
Recipents
Set the list of recipents for this message.
Default: ''
Reply to
Set the reply to receiver for this message.
Default: ''
Include Attachments In Mail
If checked attachments are attached to the message, if not a link will be provided in the message.
Default: false
Template (Plain Text)
Customize the plain text template for this message
Default:
{% for key,value in all_values %} {{ key }}: {{ value }} {% endfor %}
Use Html
If checked it is possible to use the html template
Default: false
Template (HTML)
Customize the html template for this message
Default:
<table> <tr> <td>Key</td> <td>Value</td> </tr> {% for key,value in all_values %} <tr> <td>{{ key }}</td> <td>{{ value }}</td> </tr> {% endfor %} </table>