|
Create Custom Mailboxes using cPanel
If you are using cPanel and want to add an automated email signup form to your web site you're welcome.
First create an html form and get the following information from user:
- New Email Address.
- Password.
- ... (other information are not required.)
Now set the action of this form to "signup.php" with the POST method and set the value to your email address.
Example :
<form name=a method=POST action="signup.php" autocomplete=off>
<input type="hidden" name="to" value="your email address">
Now use the following code as "signup.php" :
|