Configure Messaging

Messaging Account consists of creating an SMTP server to send emails or notifications to CNO users.

Create a messaging account by giving elements of configuration

                cnoctl adm create smtp [--flags]
              
The supported flags are:
  • email: The sender email of your organization | [REQUIRED]
  • smtp-password: The sender email account password | [REQUIRED]
  • smtp-server: The name of the most common email providers' servers | [REQUIRED]
  • smtp-port: The port of the email provider's servers | [REQUIRED]

GET SYNTAX

List informations about Your Messaging Account

                cnoctl adm get smtp
              

TEST SYNTAX

Do a test to make sure that the smtp server configuration is correct

                cnoctl adm test smtp receivermail@mail.com -m "Your message"
              

or

                cnoctl adm test smtp receivermail@mail.com --message "Your message"
              
The supported flags are:
  • email or e: the receiver mail test | [REQUIRED]
  • message or m: the message to sent| [OPTIONAL]