You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`smtp_skip_tls_verif`| Skip or not TLS insecure verify|
14
+
|`from_address`| from which email you want to send the message|
15
+
|`from_name`| from which name you want to send the message|
16
+
|`to`| receiver(s) of your email|
17
+
|`subject`| subject of your email|
18
+
|`body`| content of your email|
19
19
20
20
## Example
21
21
@@ -25,9 +25,9 @@ An action of type `email` requires the following kind of configuration:
25
25
action:
26
26
type: email
27
27
configuration:
28
-
#mandatory, string
28
+
#optional, string, leave empty for no auth
29
29
smtp_username: {{.config.smtp.username}}
30
-
#mandatory, string
30
+
#optional, string, leave empty for no auth
31
31
smtp_password: {{.config.smtp.password}}
32
32
# mandatory, string as uint
33
33
smtp_port: {{.config.smtp.port}}
@@ -68,4 +68,4 @@ Sensitive data should be retrieved from configstore and accessed through `{{.con
68
68
69
69
The `email` plugin declares automatically resources for its steps:
70
70
-`socket` to rate-limit concurrent execution on the number of open outgoing sockets
71
-
-`url:smtp_hostname` (where `smtp_hostname` is the outgoing SMTP server of the plugin configuration) to rate-limit concurrent execution on a specific outgoing SMTP server
71
+
-`url:smtp_hostname` (where `smtp_hostname` is the outgoing SMTP server of the plugin configuration) to rate-limit concurrent execution on a specific outgoing SMTP server
0 commit comments