Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languageyaml
vars:
  name: "Sam"
  email: "recipient@domain.tld"

pipeline:
 - mail.send:
    to: "#${vars.email}"
    subject: "This is for #${vars.name}"
    message: |
      Hello #${vars.name},
      this is an email sent from a pipeline.
      Greetings

...