Files
kubevela/pkg/stdlib/pkgs/email.cue
Tianxin Dong 828acd95fa Feat: add email support in webhook notification (#2535)
* Feat: add email support in webhook notification

* Fix: change sender and receiver to from and to

* fix the variable name

* fix wait return
2021-10-28 10:59:17 +08:00

20 lines
259 B
CUE

#Send: {
#do: "send"
#provider: "email"
from: {
address: string
alias?: string
password: string
host: string
port: int
}
to: [...string]
content: {
subject: string
body: string
}
stepID: context.stepSessionID
...
}