@maximusmccullough This is not a plugin issue.
Most probably you are getting a 404 page if you access any external php files in your plugins folder.
So here are steps to check if your server is sending email, or not.
Create a send.php file and paste this code in it and upload it to root of your website and access it via typing the address in url
<?php
$to = "[email protected]"; // change to your email
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "[email protected]";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
If you get the email, you are good, else check your server email.
If you got the email from the test script and you still get “Cannot Send Email: Internal Error” then it might be your file permissions. Make sure that directory permission is not 777, change it to 755 and test it.
You should be fine.
Also please rate us a 5 star if you like this plugin