SMTP
apiVersion: mission-control.flanksource.com/v1
kind: Connection
metadata:
  name: smtp-connection
  namespace: default
spec:
  smtp:
    host: your-smtp-host
    username:
      value: your-username
    password:
      value: your-password
    insecureTLS: true
    encryption: auto
    port: 587
    fromAddress: your-from-address
    toAddresses:
      - recipient1@example.com
      - recipient2@example.com
    subject: your-email-subject
    auth: Plain
| Field | Description | Scheme | 
|---|---|---|
auth | SMTP authentication method  | None | Plain | CRAMMD5 | Unknown | OAuth2 | 
encryption | Encryption method  | None | ExplicitTLS | ImplicitTLS | Auto | 
fromAddress | Email address that the mail is sent from  | string  | 
host | SMTP server host  | string  | 
insecureTLS | If true, TLS will not be verified  | bool  | 
password | Password for SMTP authentication  | |
port | SMTP server port (default: 587)  | int  | 
subject | Subject of the sent email  | string  | 
toAddresses | List of recipient email addresses  | string[]  | 
username | Username for SMTP authentication  |