PHP Mail() function, getting 553 error

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • RogerInHawaii
    New Member
    • Jun 2007
    • 13

    PHP Mail() function, getting 553 error

    I'm developing my web site and running it on my local machne during development. In my php.ini file I've set the SMTP to point to the smtp server out on the actual domain that will eventually host the site and set the sendmail_from to be one of my email accounts, already set up, on that domain.

    When I invoke mail() from my PHP code I receive an error message:

    Code:
    SMTP server response: 553 Sorry, that domain isn't in my list of allowed rcpthosts
    I'm trying to send the email to MyUsername@aol. com, so it's unlikely that the problem is actually a disallowed rcpthost. Reading through posts elsewhere on the Internt I conclude that the real problem is that I'm not providing logon information (username and password) to the smtp server. (Via Outlook Express I can indeed send emails out through that smpt server, but Outlook Express allows me to specify the username and password for my domain).

    But the PHP mail() function does not appear to have any way to specify username and password. What do I need to do in order to tell the smtp server what my username and password is, so I can successfully use PHP mail() ?
  • Motoma
    Recognized Expert Specialist
    • Jan 2007
    • 3236

    #2
    PHP's built in mail() function does not allow SMTP Authentication. You could try the PEAR Mail package, or try writing your own with fsockopen().

    Comment

    • RogerInHawaii
      New Member
      • Jun 2007
      • 13

      #3
      Oh boy. Yet another package to download, install, learn, get confused by, and spend hours getting working right.

      Thanks, :)

      Comment

      • Motoma
        Recognized Expert Specialist
        • Jan 2007
        • 3236

        #4
        Good luck. Come back if you have any other questions.

        Comment

        • pbmods
          Recognized Expert Expert
          • Apr 2007
          • 5821

          #5
          Originally posted by RogerInHawaii
          Oh boy. Yet another package to download, install, learn, get confused by, and spend hours getting working right.
          Yes... computer programming. Wonderful, isn't it? :)

          [EDIT: Computers in general, come to think of it....]

          Comment

          • Motoma
            Recognized Expert Specialist
            • Jan 2007
            • 3236

            #6
            Hey, computers are easier to understand than people!

            Comment

            • Purple
              Recognized Expert Contributor
              • May 2007
              • 404

              #7
              and they generally do what they are asked - and there in lies the issue....

              Comment

              • pbmods
                Recognized Expert Expert
                • Apr 2007
                • 5821

                #8
                Originally posted by Purple
                and they generally do what they are asked - and there in lies the issue....
                My sig (which currently doesn't show up in the forums):
                Originally posted by pbmods
                The exciting part of computer programming is getting a machine that does exactly what you tell it to do... to do what you want it to do.

                Comment

                Working...