Jump to content

briakra

Member
  • Posts

    3
  • Joined

  • Last visited

Posts posted by briakra

  1. I am new to cubecart but found it very easy to use... but I can't get email to work at all.

    I have verified all my settings but no emails go out.

    I have run a simple script to test that email is working on my hosting companies server but they have been absolutely no help.

    below is the script that I ran that worked just fine.

    $to = "[email protected]";

    $subject = "Hi!";

    $body = "Hi,\n\nHow are you?";

    mail($to, $subject, $body);

    can anyone post some ideas or troubleshooting steps so I can get email working?

    If you use SMTP settings for your domain e.g.

    SMTP Host: mail.yourdomain.com

    SMTP Port: 26 (sometimes the default port 25 is blocked)

    Use authentication: Yes

    SMTP Username: e.g. [email protected]

    SMTP Password: password for your email address

    Works for me! :angry:

    I have tried that as well with no success... is there anything thru PHP directly I can check?

  2. I am new to cubecart but found it very easy to use... but I can't get email to work at all.

    I have verified all my settings but no emails go out.

    I have run a simple script to test that email is working on my hosting companies server but they have been absolutely no help.

    below is the script that I ran that worked just fine.

    $to = "[email protected]";

    $subject = "Hi!";

    $body = "Hi,\n\nHow are you?";

    mail($to, $subject, $body);

    can anyone post some ideas or troubleshooting steps so I can get email working?

×
×
  • Create New...