Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Marionette requires to contact users through SMS. We provides several integration with SMS services.

Twilio

Twilio - Send messages to customers across preferred channels like SMS, MMS, and WhatsApp with one API.

# global/config.yaml
...
messages:
...
  sms:  
    type: twilio
    phone_number: PHONE_NUMBER
    account_sid: CHANGE_ME
    auth_token: CHANGE_ME
...

Amazon Simple Notification Service

Amazon Simple Notification Service - Fully managed Pub/Sub service for A2A and A2P messaging.

# global/config.yaml
...
messages:
...
  sms:
    type: AWS
    region: REGION
    sns_user_access_key: CHANGE_ME
    sns_secret_access_key: CHANGE_ME
...
  • No labels