TIA.
---
"If there is a God, he must be a sadist!"
Email: rrjanbiah-at-Y!com
R. Rajesh Jeba Anbiah wrote:
> 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>-activ...@domain.com or so.
[ I´m assuming a Unix server here ]
In the ¨<actcode>-activ...@domain.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 activ...@domain.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
Thanks a lot!