I’ve got exactly the same issue. I tried enabling and disabling the logging, but neither worked. Sending emails is working perfectly, but the stats are just empty and the sending limits don’t reflect what Amazon SES now says either :-
Max24HourSend 200.0 Max email quota for 24 hours period
MaxSendRate 1.0 /s Max email sending rate par second
SentLast24Hours 0.0 Emails sent for the last 24 hours
SendRemaining 200 Email sending quota remaining
SendUsage 0 % Usage percentage per 24h
SES says 50000 per day and 14 per second.
In ses-stats.php, line 16:
$SES = new SimpleEmailService($wpses_options['access_key'], $wpses_options['secret_key']);
change to:
$SES = new SimpleEmailService($wpses_options['access_key'], $wpses_options['secret_key'], $wpses_options['endpoint']);
should pull the endpoint from the options table and display stats properly
Many thanks for that. Works great.
fantastic, thank you @ange1rob0t !