Hi @HullioGQ,
First, I would remove PHP 8.5 from the equation. Mautic 7.2 should be run with a supported PHP version such as PHP 8.3 or 8.4, with both PHP-FPM and the CLI using the same version. PHP 8.5 can introduce unrelated compatibility problems and makes the SNS issue harder to diagnose.
For SES sending plus SNS bounce/complaint callbacks, the relevant plugin is etailors/mautic-amazon-ses. It supports Mautic 7. There are two installation paths; use one, not both.
Option 1: Composer installation, recommended because it resolves the plugin dependencies:
cd /path/to/mautic
composer require etailors/mautic-amazon-ses:^1.0 -W
rm -rf var/cache/*
php bin/console mautic:plugins:reload
Option 2: Git installation, if you need to manage the plugin checkout manually:
cd /path/to/mautic
composer require aws/aws-sdk-php:^3.0 -W
cd plugins
git clone https://github.com/pm-pmaas/etailors_amazon_ses.git AmazonSesBundle
cd ..
rm -rf var/cache/*
php bin/console mautic:plugins:reload
After that, configure the SES transport in Mautic Email Settings using your SES API credentials and region. The SNS subscription endpoint for this plugin is:
https://your-mautic-domain.example/mailer/callback
That endpoint must be publicly reachable over HTTPS with a valid certificate. It must not require login, be blocked by a firewall/WAF, or be cached by a proxy/CDN. Check the web-server access log while creating the SNS subscription: AWS should make a request to /mailer/callback.
Please share the exact error from var/logs/mautic_*.log, with credentials and tokens removed, plus the HTTP status recorded for the callback request. That will distinguish a PHP/plugin problem from an endpoint, proxy, or AWS SNS configuration issue.