async mail issue

  • Solved
  • Posted 8 months ago

Hi,
I had a long back and forth with Nitin as I thought his emails from flows were not working. But now we noticed that the complete async function of sending mails out in voxel seems not to be working at all.

Nitin told me to change something in his plugin, so that at least those emails are now sent out properly and can be tracked on fluentSMTP.

// $email = \Voxel\Queues\Async_Email::instance()->data( $args )->dispatch();
$email = wp_mail(
$recipient_email,
stripslashes( $subject ),
\Voxel\email_template( stripslashes( $message ) ),
array(
‘Content-type: text/html;’,
)
);

Here comment by Nitin:
“It is in the Voxel Async Email sending
Seems something is wrong in Async Email Sending in Voxel, which they use to send email
I just replaced the call with regular wp_mail call and it is now working”

Can you help to find a solution for this?
I will also share logins to the test environment and FTP logins for you to be able to check everything. I have already deactivated all plugins besides flowmattic and ea4v as I needed both to test my email flow with flowmattic.

You can for example submit a new collaboration and then you should see from the app events that the creator of the collaboration campaign should get an email about it as well as admin should get an email. but both are not sent out. why?