Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Latest commit

 

History

History
44 lines (41 loc) · 1.78 KB

configuration.md

File metadata and controls

44 lines (41 loc) · 1.78 KB

Full configuration

For the 'how to send a email' go to the usage documentation.

fh_mailer:
    # All available options for templated emails
    templated_email:
        consumer_welcome:
            html_template: 'email/consumer_welcome.html.twig'
            text_template: 'email/consumer_welcome.txt.twig'
            subject: 'Tilburg, je bent er.'
            participants:
                sender: { address: 'freshheads@example.com', name: 'Freshheads' }
                from:
                    - { address: 'kevin@example.com', name: 'Kevin' }
                reply_to:
                    - { address: 'freshheads@example.com', name: 'Freshheads' }
                to:
                    - { address: 'misha@example.com', name: 'Misha' }
                cc:
                    - { address: 'joris@example.com', name: 'Joris' }
                bcc:
                    - { address: 'bart@example.com', name: 'Bart' }
    
    # All available options for regular emails
    email:
        consumer_welcome:
            subject: 'Tilburg, je bent er.'
            participants:
                sender: { address: 'freshheads@example.com', name: 'Freshheads' }
                from:
                    - { address: 'kevin@example.com', name: 'Kevin' }
                reply_to:
                    - { address: 'freshheads@example.com', name: 'Freshheads' }
                to:
                    - { address: 'misha@example.com', name: 'Misha' }
                cc:
                    - { address: 'joris@example.com', name: 'Joris' }
                bcc:
                    - { address: 'bart@example.com', name: 'Bart' }

This bundle contains a plain SMTP transport factory for the Symfony Mailer component, take a look at the transport documentation.