symfony / amazon-sns-notifier
Provides Amazon SNS integration for Symfony Notifier.
Fund package maintenance!
fabpot
Tidelift
symfony.com/sponsor
Installs: 125 575
Dependents: 1
Suggesters: 0
Security: 0
Stars: 6
Watchers: 5
Forks: 1
Type:symfony-notifier-bridge
Requires
- php: >=8.2
- async-aws/sns: ^1.0
- symfony/http-client: ^6.4|^7.0
- symfony/notifier: ^7.2
- 7.2.x-dev
- v7.2.0-BETA1
- 7.1.x-dev
- v7.1.6
- v7.1.1
- v7.1.0
- v7.1.0-RC1
- v7.1.0-BETA1
- 7.0.x-dev
- v7.0.8
- v7.0.7
- v7.0.3
- v7.0.0
- v7.0.0-RC1
- v7.0.0-BETA1
- 6.4.x-dev
- v6.4.13
- v6.4.8
- v6.4.7
- v6.4.3
- v6.4.0
- v6.4.0-RC1
- v6.4.0-BETA1
- 6.3.x-dev
- v6.3.12
- v6.3.4
- v6.3.0
- v6.3.0-RC1
- v6.3.0-BETA1
- 6.2.x-dev
- v6.2.11
- v6.2.7
- v6.2.5
- v6.2.0
- v6.2.0-RC1
- v6.2.0-BETA1
- 6.1.x-dev
- v6.1.11
- v6.1.9
- v6.1.0
- v6.1.0-RC1
- v6.1.0-BETA1
- 6.0.x-dev
- v6.0.19
- v6.0.17
- v6.0.3
- v6.0.1
- v6.0.0
- v6.0.0-RC1
- v6.0.0-BETA2
- v6.0.0-BETA1
- 5.4.x-dev
- v5.4.45
- v5.4.40
- v5.4.39
- v5.4.35
- v5.4.28
- v5.4.24
- v5.4.21
- v5.4.19
- v5.4.17
- v5.4.3
- v5.4.0
- v5.4.0-RC1
- v5.4.0-BETA2
- v5.4.0-BETA1
This package is auto-updated.
Last update: 2024-10-27 15:24:40 UTC
README
Provides Amazon SNS integration for Symfony Notifier.
DSN example
AMAZON_SNS_DSN=sns://ACCESS_ID:ACCESS_KEY@default?region=REGION&profile=PROFILE&sslmode=SSLMODE
where:
ACCESS_ID
is your AWS access key idACCESS_KEY
is your AWS access key secretREGION
is the targeted AWS region (optional, default:us-east-1
)PROFILE
is the name of your AWS configured profile (optional, default:default
)SSLMODE
https
is used by default. It can be changed by setting value todisable
,http
will be used
Adding Options to a Chat Message
With an Amazon SNS Chat Message, you can use the AmazonSnsOptions
class to add
message options.
use Symfony\Component\Notifier\Message\ChatMessage; use Symfony\Component\Notifier\Bridge\AmazonSns\AmazonSnsOptions; $chatMessage = new ChatMessage('Contribute To Symfony'); $options = (new AmazonSnsOptions('topic_arn')) ->subject('subject') ->messageStructure('json') // ... ; // Add the custom options to the chat message and send the message $chatMessage->options($options); $chatter->send($chatMessage);