sumit13
Forum Replies Created
-
Yes, I have tested with different emails as a user and as admin but the issue is still there. I have also created a ticket for this issue at https://metagauss.freshdesk.com/support/tickets/38326
Hi, thanks for your reply.
I am not using any SMTP. If I disable this RegistrationMagic plugin I get the emails and when I enable it I don’t get any email.
I have setup a staging environment for you people to test the issue. Kindly let me know how can I share the credentials with you ?
@metagauss Can you please let me know what could be the issue.. ?
Thank you for your response. I tried testing email from email configuration settings and that did not work as well.
Simple PHP code to send email works fine as mentioned below:
$to = “[email protected]”;
$subject = “My subject”;
$txt = “Hello world!”;
$headers = “From: [email protected]” . “\r\n”;mail($to,$subject,$txt,$headers);
But emails from plugin not working.
- This reply was modified 3 years, 3 months ago by sumit13.