Hi @patrickgm,
Could you enable the email logging again and also enable wp debugging? Below you wil find instructions on how you can enable debugging. Then please do a test email by visiting this URL: yourdomain.com/wp-admin/admin.php?page=burst&burst_test_report=weekly
Be sure to replace your domain ??
Could you enable debugging and let us know what is in the debug log?
You have two options: installing the WP Debugging plugin (https://www.ads-software.com/plugins/wp-debugging/) or following the instructions below to access the error log. After installing the debugging plugin, visit the Burst Dashboard, then in the top bar you should hover “Debug quick look” and click view file raw. Please let us know what’s in there.
1. To enable debugging in WordPress, edit the wp-config.php file in the root of your WordPress installation and add the following lines before the line /* That’s all, stop editing! Happy publishing. */:
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG, true);
define(‘WP_DEBUG_DISPLAY, false);
@ini_set(‘display_errors’, 0);
define(‘SCRIPT_DEBUG’, true);.
2. Save the file.?
3. To check the debug log, locate the debug.log file in the wp-content directory and open it with a text editor.?
4. Please share the error message with us.
5. To disable debugging, edit the wp-config.php file again and change define(‘WP_DEBUG’, true); to define(‘WP_DEBUG’, false);. Disable debugging on live sites for security and performance.
Hope this will show some errors and we will go from there!
Kind regards,
Hessel