Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 668 Bytes

mail.md

File metadata and controls

27 lines (24 loc) · 668 Bytes

SMTP mail

Parameters

  • host Host of mailer (required)
  • port Port of mailer (required)
  • encryption Encryption type (default null)
  • username Username
  • password Password
  • sender Sender (required)
  • recipients Recipients of message (required)

Example

# config/packages/artox_lab_sms.yaml
artox_lab_sms:
    providers:
        mail_provider_doc: # your custom provider name
            mail:
                host: 'host'
                port: 'port'
                encryption: ''
                username: ''
                password: ''
                sender: 'sender'
                recipients: 'recipients'