Sending auth email

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jon Slaughter

    Sending auth email

    Do I need some module to send emails with php or is there something built
    into apache that does this? I want to send some email authentication emails
    but not sure if I have to have some type of email host(which I don't on my
    web server).

    I assume its going to be impossible to do since I have no mail server to
    handle the transactions? I don't want to use a remote server either as its
    not that big a deal.

    Thanks,
    Jon


  • Jerry Stuckle

    #2
    Re: Sending auth email

    Jon Slaughter wrote:
    Do I need some module to send emails with php or is there something built
    into apache that does this? I want to send some email authentication emails
    but not sure if I have to have some type of email host(which I don't on my
    web server).
    >
    I assume its going to be impossible to do since I have no mail server to
    handle the transactions? I don't want to use a remote server either as its
    not that big a deal.
    >
    Thanks,
    Jon
    >
    >
    If you don't have a MTA (Mail Transfer Agent) on your server and don't
    want to use a remote one, you can't send email. You need access to one
    somewhere!

    Apache is a web server - not an MTA.

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    • Jon Slaughter

      #3
      Re: Sending auth email


      "Jerry Stuckle" <jstucklex@attg lobal.netwrote in message
      news:Y6-dndFOiu3Q2N_bnZ 2dnUVZ_rzinZ2d@ comcast.com...
      Jon Slaughter wrote:
      >Do I need some module to send emails with php or is there something built
      >into apache that does this? I want to send some email authentication
      >emails but not sure if I have to have some type of email host(which I
      >don't on my web server).
      >>
      >I assume its going to be impossible to do since I have no mail server to
      >handle the transactions? I don't want to use a remote server either as
      >its not that big a deal.
      >>
      >Thanks,
      >Jon
      >
      If you don't have a MTA (Mail Transfer Agent) on your server and don't
      want to use a remote one, you can't send email. You need access to one
      somewhere!
      >
      Apache is a web server - not an MTA.
      >
      duh... but there are modules for smtp





      Comment

      • Jerry Stuckle

        #4
        Re: Sending auth email

        Jon Slaughter wrote:
        "Jerry Stuckle" <jstucklex@attg lobal.netwrote in message
        news:Y6-dndFOiu3Q2N_bnZ 2dnUVZ_rzinZ2d@ comcast.com...
        >Jon Slaughter wrote:
        >>Do I need some module to send emails with php or is there something built
        >>into apache that does this? I want to send some email authentication
        >>emails but not sure if I have to have some type of email host(which I
        >>don't on my web server).
        >>>
        >>I assume its going to be impossible to do since I have no mail server to
        >>handle the transactions? I don't want to use a remote server either as
        >>its not that big a deal.
        >>>
        >>Thanks,
        >>Jon
        >If you don't have a MTA (Mail Transfer Agent) on your server and don't
        >want to use a remote one, you can't send email. You need access to one
        >somewhere!
        >>
        >Apache is a web server - not an MTA.
        >>
        >
        duh... but there are modules for smtp
        >

        >
        >
        >
        But that doesn't make it an MTA.

        --
        =============== ===
        Remove the "x" from my email address
        Jerry Stuckle
        JDS Computer Training Corp.
        jstucklex@attgl obal.net
        =============== ===

        Comment

        Working...