mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 11:11:28 +00:00
* Feat: add email support in webhook notification * Fix: change sender and receiver to from and to * fix the variable name * fix wait return
20 lines
259 B
CUE
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
|
|
...
|
|
}
|