Jump to content
thirty bees forum
  • 0

Emails not working in ThirtyBees


Kevin13952

Question

I've tries testing the Contact Us page and it doesn't send to an email address. I can view it in the back office, but when I respond, it doesn't send an email response to the sender.

I also have Newsleter Pro and the "TEST" email works perfectly, but it won't send when I try to test sending to multiple recipients.

I get the following error message:

Error : <!DOCTYPE html> <html lang="en"> <head> <title>Error: Wrong parameters for Exception([string $message [, long $code [, Throwable $previous = NULL]]])</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="description" content="This store is powered by thirty bees." /> <style> html { padding: 0; margin: 0; font-size: 16px; line-height: 1.4; color: #222; background: white; } body { padding: 0; margin: 0; font-size: 14px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } .header { background-color: #f6d426; color: black; padding: 10px 25px; } .footer { background-color: #f6d426; color:...
 
I'm including the error message in case it helps narrow down why my site isn't sending emails.
 
I've alos used a test.php file on my site with the following testing code, and it worked fine. But still can't send emails via ThirtyBees:
 
<?PHP
$sender = 'someone@somedomain.tld';
$recipient = 'you@yourdomain.tld';

$subject = "php mail test";
$message = "php test message";
$headers = 'From:' . $sender;

if (mail($recipient, $subject, $message, $headers))
{
    echo "Message accepted";
}
else
{
    echo "Error: Message not accepted";
}
?>
Edited by Kevin13952
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...