Hello,
Thanks for the feedback. I just checked, and the action works correctly. Can you please share a screenshot of your E-mail action? Please make sure that all fields are correctly set, including the e-mail content.
The E-mail action use the wp_mail()
function behind the scene. See documentation: https://developer.www.ads-software.com/reference/functions/wp_mail/
This action is the generic WordPress action to send e-mails. Using it guarantee the compatibility with other plugins and sending methods (SMTP, PHP Mail etc…). By default, the wp_mail()
action will use the PHP Mail function. See documentation: https://www.php.net/manual/fr/function.mail.php
If you want to check what’s going on behind the scene, you can use the acfe/form/submit/email_args
filter (See documentation: https://www.acf-extended.com/features/modules/dynamic-forms/e-mail-action), to check if everything is correctly set before the arguments are sent thru wp_mail()
.
To debug the wp_mail()
function, you can use the wp_mail
filter, see documentation: https://developer.www.ads-software.com/reference/hooks/wp_mail/
You can also try some WP Mail logger plugins:
Finally, you’ll find some resources on the web to debug mails, ie:
Hope it helps!
Regards.