Account activation via email

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • R. Rajesh Jeba Anbiah

    Account activation via email

    I'm supposed to do the account activation via email. I mean *not*
    sending the activation link like http://foo.com/foo.php?actcode=foo.
    But, I would like it to be like <actcode>-activation@doma in.com or so.
    I remember, once I did it by checking the POP3 server. Now, I totally
    forgot how I did it in PHP or server. Also, I couldn't find any
    solution/script by Googling. Anyone has the idea?

    TIA.

    ---
    "If there is a God, he must be a sadist!"
    Email: rrjanbiah-at-Y!com
  • Eric Veltman

    #2
    Re: Account activation via email

    Hello Rajesh,

    R. Rajesh Jeba Anbiah wrote:
    [color=blue]
    > I'm supposed to do the account activation via email. I mean *not*
    > sending the activation link like http://foo.com/foo.php?actcode=foo.
    > But, I would like it to be like <actcode>-activation@doma in.com or so.[/color]

    [ I´m assuming a Unix server here ]

    In the ¨<actcode>-activation@doma in.com" case, I think you would need
    to plug your code into the e-mail system. I think it will be easier if
    you use a single e-mail address activation@doma in.com and put the
    <actcode> in the subject line of the activation e-mails.

    If you have shell access on the machine, you can then put a line
    in the .forward file for the "activation " user that tells the e-mail
    system to pipe the e-mail to a PHP command line script that you wrote.
    In that script you can then do anything you want with the e-mail.

    I don't remember the exact syntax for the .forward file,
    but I think you can find it on Google.

    Best regards,

    Eric

    Comment

    • R. Rajesh Jeba Anbiah

      #3
      Re: Account activation via email

      Eric Veltman <eric@[RemoveThis]veltman.nu> wrote in message news:<vppnnssuq 4p394@corp.supe rnews.com>...[color=blue]
      > Hello Rajesh,
      >
      > R. Rajesh Jeba Anbiah wrote:
      >[color=green]
      > > I'm supposed to do the account activation via email. I mean *not*
      > > sending the activation link like http://foo.com/foo.php?actcode=foo.
      > > But, I would like it to be like <actcode>-activation@doma in.com or so.[/color]
      >
      > [ I´m assuming a Unix server here ]
      >
      > In the ¨<actcode>-activation@doma in.com" case, I think you would need
      > to plug your code into the e-mail system. I think it will be easier if
      > you use a single e-mail address activation@doma in.com and put the
      > <actcode> in the subject line of the activation e-mails.
      >
      > If you have shell access on the machine, you can then put a line
      > in the .forward file for the "activation " user that tells the e-mail
      > system to pipe the e-mail to a PHP command line script that you wrote.
      > In that script you can then do anything you want with the e-mail.
      >
      > I don't remember the exact syntax for the .forward file,
      > but I think you can find it on Google.[/color]

      Thanks a lot!

      ---
      "If there is a God, he must be a sadist!"
      Email: rrjanbiah-at-Y!com

      Comment

      Working...