Page 1 of 2 12 LastLast
Results 1 to 10 of 16

Thread: Hello I have an email problem

  1. #1
    Thread Starter
    anunturitop_ro's Avatar
    Join Date
    May 2009
    Location
    Romania
    Posts
    69
    Thanks
    0
    Thanked 1 Time in 1 Post

    Hello I have an email problem

    i JUST CREATED A TEST ADS TO TO VERIFY IF THE SCRIPT SEND CONTACT EMAIL. BUT I DON'T RECEIVE ANY EMAIL .. WHEN I PUSH SEND EMAIL IT SHOW SUCCES MESSAGE (Your email has been sent.) BUT WHEN I CHECK MY EMAIL THERE IS NO EMAIL ??? WHERE CAN BE THE PROBLEM .. I ALSO TRYED WITH SMTP SERVER BUT STILL DON'T WORK .. I AM USING AWARDSPACE.COM HOSTING PROVIDER .. AND MY DOMAIN IS HTTP://WWW.VINDEMA.COM.. CAN SOMEONE CHECK WHERE IS THE PROBLEM ... PLEASE !!!!

  2. #2
    Veteran pointandstare's Avatar
    Join Date
    Apr 2009
    Location
    London, England
    Posts
    311
    Thanks
    0
    Thanked 2 Times in 2 Posts

    Re: Hello I have an email problem

    Just sent you a test message.
    If it doesn't come through, speak to your host first to see if they have any problems.

  3. #3
    Thread Starter
    anunturitop_ro's Avatar
    Join Date
    May 2009
    Location
    Romania
    Posts
    69
    Thanks
    0
    Thanked 1 Time in 1 Post

    Re: Hello I have an email problem

    No i don't received any message .. And what to ask the hosting provider ??? What to tell them ??!!!

  4. #4
    Founder dcowgill's Avatar
    Join Date
    Mar 2009
    Location
    San Francisco, CA
    Posts
    1,939
    Thanks
    66
    Thanked 135 Times in 99 Posts

    Re: Hello I have an email problem

    Ask them if emails being sent from your website have to be authenticated in order to work. You might be able to fix it by simply making sure your WordPress Settings admin email address matches your domain name.

    Some hosting providers don't allow this because it cuts down on spam and scripts sending out mass emails.

  5. #5
    Thread Starter
    anunturitop_ro's Avatar
    Join Date
    May 2009
    Location
    Romania
    Posts
    69
    Thanks
    0
    Thanked 1 Time in 1 Post

    Re: Hello I have an email problem

    OK thank you . I will ask them and after i will have them answer i will inform you what they say.

  6. #6
    Founder dcowgill's Avatar
    Join Date
    Mar 2009
    Location
    San Francisco, CA
    Posts
    1,939
    Thanks
    66
    Thanked 135 Times in 99 Posts

    Re: Hello I have an email problem

    Great. Make sure to explain the situation in detail to them otherwise they might just say it's the script's fault.

  7. #7
    Thread Starter
    anunturitop_ro's Avatar
    Join Date
    May 2009
    Location
    Romania
    Posts
    69
    Thanks
    0
    Thanked 1 Time in 1 Post

    Re: Hello I have an email problem

    ----The awardspace answered me .. They say that may be a problem of the script..
    I also see that i receive a error when i try the email to a friend option... After i complete all the fields and push Mail IT ! i receive this error: (An error has occurred when trying to send this email:
    » Language string failed to load: instantiate
    ) I don't modified anything to the script ... Maybe for this reason don't send emails when i use contact form, but when i use contact form i don't receive this error ...

    I hope that you understand me and sorry for my english !!!

  8. #8
    Founder dcowgill's Avatar
    Join Date
    Mar 2009
    Location
    San Francisco, CA
    Posts
    1,939
    Thanks
    66
    Thanked 135 Times in 99 Posts

    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");

  9. #9
    Thread Starter
    anunturitop_ro's Avatar
    Join Date
    May 2009
    Location
    Romania
    Posts
    69
    Thanks
    0
    Thanked 1 Time in 1 Post

    Re: Hello I have an email problem

    Yes it's working the test file .. i receive messages. So what can i do ??

  10. #10
    Founder dcowgill's Avatar
    Join Date
    Mar 2009
    Location
    San Francisco, CA
    Posts
    1,939
    Thanks
    66
    Thanked 135 Times in 99 Posts

    Re: Hello I have an email problem

    Did you try changing the test message to another language in the subject and body? Do you speak another language or am I just missing something?

    Did the from email come from "someonelse@example.com"?

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. New User Email Plugin in 3.02 BUG - Send Notification Email
    By zontor in forum ClassiPress General Discussion
    Replies: 15
    Last Post: December 25th, 2013, 12:23 PM
  2. Problem with contact email
    By robot111 in forum Help Using ClassiPress
    Replies: 1
    Last Post: May 25th, 2010, 03:13 PM
  3. Email shows from Wordpress-I DO use SB Welcome Email Editor
    By netpotion in forum Report ClassiPress Bugs
    Replies: 3
    Last Post: April 24th, 2010, 09:41 PM