Re: Hello I have an email problem
So it could be a couple of different things. ClassiPress uses the PHP mail function which isn't always configured to work on hosting provider servers. I recommend you test your environment first to isolate the issue.
Create a blank .php page called emailtest.php and enter the following code on it. Change the $to email address to your own and then upload that to your server and load the page through your browser. See if you get the same error message. If so, then your hosting provider probably isn't configured to work with PHP mail.
Code:
<?php
$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From: $from";
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
If it does work, then it might have to do with the subject or message being encoded as UTF-8. I assume you are not using English? We might need to decode the subject and message if that's the case. Here's an example:
Code:
$subject = utf8_decode("Någon har svarat på din fråga på $site");