Lewis
Lewis

Reputation: 31

How can I automatically create an email address for my website members?

How can I automatically create an email address for my website members and forward the mail to their own email address.

eg.

  1. john123 signs up to my members site.
  2. script automatically creates email address [email protected]
  3. mail to [email protected] goes to johns email address: [email protected]

Upvotes: 3

Views: 1130

Answers (1)

Sabeen Malik
Sabeen Malik

Reputation: 10880

If i remember this correctly, this is how i did it. This is not how you envision it to happen though.

1 : Instead of bouncing emails which were sent to a wrong email addy, i routed them to a PHP script.

2 : The script parsed the username part in the "To" field and checked in DB, if match found, get the real email

3 : Re-mail the email to real address.

Upvotes: 2

Related Questions