• I’m getting the following error message when formidable forms sends an email via Post SMTP:

    You getting this message because an error detected while delivered your email.
    For the domain: (my website's domain)
    The log to paste when you open a support issue:
    No body specified
    

    All of the emails are complete and have content in the body of the emails. Is there a way I can suppress the false notifications?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Vitor

    (@mlvitor)

    I get the same error when a client ask for a new password for woocommerce.
    In the email log, when I click “view” the html message is perfect, but I also got the message: “Email could not be resent. Error: no body specified”.

    Same here….

    I came across this error when trying to resend a message. What I found is that the plugin expects the body of the email to be stored in a meta data field, but in my case it wasn’t – it was in the post content. So by replacing $meta_values [‘original_message’] [0] with get_post($postid)->post_content in line 134 of Postman\Postman-Email-Log\PostmanEmailLogController.php, I was able to perform the resend successfully.

    Disclaimer: I cannot be certain that this is a plugin bug. Perhaps there’s some other reason that the email body wasn’t where the plugin was looking for it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No body specified’ is closed to new replies.