sendmail

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ddtpmyra
    Contributor
    • Jun 2008
    • 333

    sendmail

    What is the equivalent this command on a php script.
    The reason is... using this sendmail command below on Novell prompt works perfectly fine but I can't make it work inside php script.

    Code:
    LOAD sys:sendmail\send.nlm xxxl@xxx.com ddtpx1.xxx.com -dxxx_fs.xxx.com -fxxxx@xxxx.com -shello;
  • archonmagnus
    New Member
    • Jun 2007
    • 113

    #2
    Try the "mail()" function in PHP.

    Here's the documentation.

    Comment

    • Atli
      Recognized Expert Expert
      • Nov 2006
      • 5062

      #3
      I would recommend trying either PHPMailer or Swift Mailer rather than the mail function.

      The mail function is very... limited. The mailer classes are much *better*.

      Comment

      • Unicron
        New Member
        • Apr 2007
        • 8

        #4
        I second that last one- I really like PHPMailer.

        It's free, easy to use, and has a lot of features. I use it for all my mail functions unless I am sending a quick error notice to myself (then I just use the built in mail function call).

        Comment

        Working...