All Collections
Build
Public Capsules
Send notifications via email
Send notifications via email

Library to send an email via smtp

Erick Rubiales avatar
Written by Erick Rubiales
Updated over a week ago

IMPORTANT: This documentation has been discontinued. Read the updated Send notifications via e-mail documentation on our new documentation portal.

Library

Digibee

Service

Send notification via e-mail

Description

The Purpose is to receive any JSON content at the input, in addition to variables, and send it via email.

Static connector configuration parameters

  • * smtp-email: Account to authenticate at the email server

  • * de: Sender's address

  • ambiente [environment]: it indicates the warning-related environment, e.g., TEST|PROD

  • destinatário [recipient]: recipient to send the email to, to use a list, it is necessary to inform a JSON array in the string format.

  • pipeline: It indicates the pipeline name (free text).

  • descricao-alerta: Title that will be used on the email header

  • assunto: Customized subjected for identifying the email

Dynamic connector configuration parameters

  • Parameters can also be configured dynamically; therefore, they must be informed within the "emailParams" object: {}

  • Dynamically informed parameters will be overwritten by static ones.

Input

{
  "logger": {
    "status": 200,
    "body": {
      "soap:Envelope": {
        "soap:Body": {
          "Erros": {
            "DescricaoErro": "Código de documento 1 não encontrado."
          },
          "ProcessamentoOK": false
        }
      }
    }
  },
  "emailParams": {
    "pipeline": "confirmar-ticket-gera",
    "descricao-alerta": "Erro ao consultar dados para integração.",
    "destinatario": "test@digibee.com.br",
    "environment": "TEST",
    "assunto": "Erro Pedido"
  }
}

Output

Success

{
  "success" : true
}

Error

{
   "timestamp": 1559243275088,
   "error": "Error",
   "code": 500
}
Did this answer your question?