How do i put on box on my website for readers to comment?

February 25th, 2010 | by admin |

I am not looking for a box that puts the comments directly on my website…i am looking for a box that when they submit a comment the comment goes directly to my email inbox…is there a website where i can just upload a code or something? i dont think i would really know how to make one lol

Comment boxes are designed to add directly to the web page where they are installed. You want comments emailed to you, then you just want a standard email form. Best is server-side if your host allows PHP and SMTP. If not, you will have to use a client-side form.

Basic Client-Side Mailto: Form:

<form method="post" action="mailto:someone@$nailmail.com" enctype="text/plain">
<input type="text" name="username"> : name <br>
<input type="text" name="email"> : email <br>
comments <br>
<textarea name="comments" rows="10" wrap="hard">
</textarea>
<input name="redirect" type="hidden" value="index.html">
<input name="NEXT_URL" type="hidden" value="index.html"><br>
<input type="submit" value="Send">
<input type="reset" value="Clear">
</form>

mailto – Web-based email Form Handler: http://www.washington.edu/webinfo/mailto/

Use a server-side script language if your web site allows it. Otherwise, you will have to use a client-side dependent "mailto:" action to get the form info sent to you.

Your current hosting package MUST allow SMTP ( http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol ) to work. Otherwise, no email can be sent.

Use any of the below sites to make the workable form you need:

For making forms:

These are really good online form makers. Just follow the instructions for making it and uploading file(s).

http://www.phpform.org/ (Best-est)
http://www.tele-pro.co.uk/scripts/contact_form/
http://jotform.com/ (WYSIWYG Form Maker)
http://www.thesitewizard.com/wizards/feedbackform.shtml
http://www.thepcmanwebsite.com/form_mail.shtml

  1. 3 Responses to “How do i put on box on my website for readers to comment?”

  2. By Jewelle on Feb 25, 2010 | Reply

    If you made your own you would have to do some server-side scripting, so unless you’re up for that you’d want to go with a hosted solution – most of which include ads.

    This one might work: http://www.htmlcommentbox.com/
    References :

  3. By frankie on Feb 25, 2010 | Reply

    Hope one of these links helps you install a comment box on your website which directs comments to your e-mail. . .

    http://www.ehow.com/how_5313223_make-own-comment-box.html

    http://aldebaranwebdesign.com/blog/adding-a-newsletter-or-email-marketing-feature-to-your-website/

    http://support.js-kit.com/jskit/topics/not_sure_how_install_on_my_website

    http://www.widgiland.com/WidgetDetail.aspx?Gadcod=1159
    References :

  4. By Ron on Feb 25, 2010 | Reply

    Comment boxes are designed to add directly to the web page where they are installed. You want comments emailed to you, then you just want a standard email form. Best is server-side if your host allows PHP and SMTP. If not, you will have to use a client-side form.

    Basic Client-Side Mailto: Form:

    <form method="post" action="mailto:someone@$nailmail.com" enctype="text/plain">
    <input type="text" name="username"> : name <br>
    <input type="text" name="email"> : email <br>
    comments <br>
    <textarea name="comments" rows="10" wrap="hard">
    </textarea>
    <input name="redirect" type="hidden" value="index.html">
    <input name="NEXT_URL" type="hidden" value="index.html"><br>
    <input type="submit" value="Send">
    <input type="reset" value="Clear">
    </form>

    mailto – Web-based email Form Handler: http://www.washington.edu/webinfo/mailto/

    Use a server-side script language if your web site allows it. Otherwise, you will have to use a client-side dependent "mailto:" action to get the form info sent to you.

    Your current hosting package MUST allow SMTP ( http://en.wikipedia.org/wiki/Simple_Mail_Transfer_Protocol ) to work. Otherwise, no email can be sent.

    Use any of the below sites to make the workable form you need:

    For making forms:

    These are really good online form makers. Just follow the instructions for making it and uploading file(s).

    http://www.phpform.org/ (Best-est)
    http://www.tele-pro.co.uk/scripts/contact_form/
    http://jotform.com/ (WYSIWYG Form Maker)
    http://www.thesitewizard.com/wizards/feedbackform.shtml
    http://www.thepcmanwebsite.com/form_mail.shtml
    References :
    http://emailmeform.com/
    http://www.freecontactform.com/
    http://www.reconn.us/content/view/12/34/ (Download – Contact Us Script)
    http://formsmarts.com/

    Ron

Post a Comment