Search results

  1. E

    Email isn't sending (PHP mail)

    Did you try sending the same message but with your code? I'm starting to think it's something to do with the subject and/or body text. I'm thinking the system is marking the message as spam for some reason. It happened before and an administrator fixed it for me.
  2. E

    Email isn't sending (PHP mail)

    This: $emails = array("email@hello.com", "email2@hello.com"); $to = implode(",", $emails); Is the same thing as this: $to = "email@hello.com,email2@hello.com"; With both of those pieces of code, the $to variable is equal to "email@hello.com,email2@hello.com".
  3. E

    Email isn't sending (PHP mail)

    Why is that the problem? According to the PHP manual and email standards, to send emails to multiple addresses you use a comma-separated list. I just tried it with one email address and it didn't work. There must be something wrong with my account or x10's system won't send it because it thinks...
  4. E

    Email isn't sending (PHP mail)

    With double quote strings you can concatenate by just putting the variable within it because double quoted strings are parsed. And the body variable is closed under the dashed line. That would make the string "mail1@example.commail2@example.com". I'm pretty sure it isn't a PHP error because...
  5. E

    Email isn't sending (PHP mail)

    Thanks for your reply! But according to the PHP docs, you can: http://php.net/manual/en/function.mail.php Also, that solution on that Stack Overflow question does the same thing (it creates a comma separated list). It's just a little nicer because the emails are inputted into an array first...
  6. E

    Email isn't sending (PHP mail)

    Can I get some help? Emails still aren't sending :/
  7. E

    Email isn't sending (PHP mail)

    Bump.
  8. E

    Email isn't sending (PHP mail)

    I've made a contact form on my client's site, but the email that is supposed to send to him isn't sending with the PHP mail function. The second email, which is a confirmation email to the person that submitted the form, works. But the one that is supposed to send to my client doesn't. Account...
  9. E

    My website isn't loading

    Nevermind, it seems to be working now. Thanks x10hosting!
  10. E

    My website isn't loading

    My website won't load and I am unable to login to cPanel. My username is elitepet. The URL to my site is http://elitepetfence.com/ Is this temporary due to the server migration or will it need to be manually fixed? Thanks in advance.
  11. E

    500 Internal Server Error, and x10hosting main site isn't working either

    I tried clearing my browser cache and visiting it again and it still shows the 522 CloudFlare error page.
  12. E

    500 Internal Server Error, and x10hosting main site isn't working either

    I just found out what is happening. x10hosting.com (without www) is showing the error but www.x10hosting.com is working. I'm able to access it when www. is at the beginning of the URL. Not sure if that's normal but I'm glad I am able to access it again. :)
  13. E

    500 Internal Server Error, and x10hosting main site isn't working either

    My website, elitepetfence.com, is showing a 500 internal server error and when I visit http://x10hosting.com I'm getting a 520 error CloudFlare page so I think it's a problem with x10hosting.
  14. E

    PHP mail() function - email not sending but there are no errors

    Emails still aren't sending with the PHP mail function.
  15. E

    PHP mail() function - email not sending but there are no errors

    Thanks for replying. I still haven't gotten the emails though.
  16. E

    [Custom Domains on Level] - GoDaddy Domain Name Not Working

    Thank you for letting us know. I hope it will be fixed soon. Do you have any idea how long it will take to get this problem fixed?
  17. E

    [Custom Domains on Level] - GoDaddy Domain Name Not Working

    I chatted with a GoDaddy Support Agent last night and he said that the DNS propagation got stuck or something. He said that he pushed a refresh through or something. That was last night and it's still not working today. I think it may be an x10 issue.
  18. E

    [Custom Domains on Level] - GoDaddy Domain Name Not Working

    My domain is elitepetfence.com
Top