Hello Coders,
I have coded a website(html with js), where I want to place a Newsletter/updates subscription box.
I have coded the design and html for the same, but unable to code the PHP mail-handler.
I have searched through Google and now, I have something in my mind....

1. Is it possible to create a DB for all registered emails, and can access get a complete full/incremental updates in email list through some logins?

2. Is it only a mail notification for me that some one registered himself for newletter and I have to add his mail id in my list manually?

3. Is there any auto grouping concept like, I have to send mail to only one ID and it will automatically sent to all registered mail ids which can be fetched from DB?

Please suggest me an appropriate and best solution.

BTW, my HTML form code is as below:

Code: 
<!--subscribe form here-->
<form id="subform" method="post" action="subscribe/subscribe.php">
<fieldset>
<p><input name="email" id="email" onfocus="if (this.value == 'Email') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Email';}" value="Email" class="required email" /></p>
<div class="button button-orange"> <span class="form_button clearfix"><input class="sub_submit" name="submit" value="subscribe" type="submit" /></span> </div>
<div id="result_sub"></div></fieldset></form><!--subscribe form ends-->
<div class="clear"></div></div></div><!--box ends-->
<div class="clear"></div></div></div></div><!--section for subscribe ends-->

Thanks for your support and co-operation.
Regards,
sf
St0neF!sh Reviewed by St0neF!sh on . [PHP] Newsletter Subscription Form -MailHandler Script Hello Coders, I have coded a website(html with js), where I want to place a Newsletter/updates subscription box. I have coded the design and html for the same, but unable to code the PHP mail-handler. I have searched through Google and now, I have something in my mind.... 1. Is it possible to create a DB for all registered emails, and can access get a complete full/incremental updates in email list through some logins? 2. Is it only a mail notification for me that some one registered Rating: 5