Appearance
The installation and configuration of the Amazon SNS service and channel is quite typical.
This page provides a quick start guide to setting up Amazon SNS with SMS Framework and Notifier. The steps described here are largely applicable to most services.
Installation
From a project with a pre-installed version of Notifier and SMS, bring in the Amazon SNS notifier dependency:
sh
composer require symfony/amazon-sns-notifier
Configuration
In the site directory, usually sites/default/
, create a services.yml
file.
Add to settings.php
:
php
$settings['container_yamls'][] = __DIR__ . '/services.yml';
Add to services.yml
:
yaml
parameters:
sms.transports:
mytransport: 'sns://ACCESS_KEY:SECRET_KEY@default?region=REGION'
Modify the DSN by replacing the ACCESS_KEY
and SECRET_KEY
and REGION
parts with your AWS access key id, AWS access key secret, and AWS region respectively.
Additional parameters are available for AWS configured profile and SSL mode and described in the Amazon SNS component documentation.
Then clear Drupal caches:
sh
drush cr
Continue at the Sending documentation to use the newly configured channel. Noting that the recipient you send to must be a valid SmsRecipientInterface
.
Resources
For more information about the Amazon SNS integration, go to the Amazon SNS transport in the Symfony monorepo.
This documentation is not provided or endorsed by Amazon.