PDA

View Full Version : Where can I find free webpage email sending form with no ads?



da_bsg
07-16-2007, 11:33 PM
where can I find free webpage email sending form with no ads?

I am doing a webpage, viewer able to sent email to me directly from the webpage without any POP3 email setting, the server directly from the web.

BUt my web servier do not support this kind of function.

so I look for email sending form, and I found one:
http://www.mycontactform.com

But this one is super Lousy, it have pop up ads, and it only limited viewers sent to me 20 E-mails per month, which is truly pathetic.

I know how to do email form, I just need a service can let viewer sent email to me without their POP3 setting.

I need it is free and no ads.

Anyone have this infomation? thanks.

stymiee
07-17-2007, 06:47 AM
Nobody offers that because they only do it to make money. If you want one for free you'll need to host your own formmail script. Otherwise you're stuck with the ads.

imzadi143
05-21-2008, 03:18 PM
<!--Hide your email address on the web site with this script.
OR make your address safe from spammers. -->

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML>
<title>Hidden Address</title>

<!-- TWO STEPS TO INSTALL HIDDEN EMAIL ADDRESS:

1. Copy the coding into the HEAD of your HTML document
2. Add the calling code into the BODY tag area -->

<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original: Rod Murgatroyd -->
<!-- Web Site: http://homepages.paradise.net.nz/~rdmurg/ -->
<!-- Begin
var bgcolor="#FF9900"; // make any color you want
var url = "fred-dagg@home.net.nz"; //your email address here
var hdg1 = '<div align="center"><center><TABLE Border=0 CELLPADDING="2"><TR>';
var hdg2 = '</TR></TABLE></div>';
var hdg3 = '<TD ALIGN="center" BGCOLOR="' + bgcolor + '">';
var hdg4 = '<A ID="mail" onmouseover="window.status=\' '+
'Click to get an email form\'; return true" onmouseout="window.status=document.title" HREF="';

function emailTo(){
output = hdg1;
output += hdg3 + hdg4 + "mailto:" + url + '">' + "Send an Email</A></TD>";
output += hdg2;
return output;
}
// End -->
</script>
<!-- The script can be put in a LINK-REL file to further hide your address -->
<!-- Use this style to format the Anchor element -->
<style>
#mail {font-size: 8pt; font-weight: bold; font-family: sans-serif;
color:black;}
</style>
</HEAD>
<!-- STEP TWO: Insert this code at the end of your document or wherever -->
<!-- you want to display the email table/form within your BODY tag -->

<script language="JavaScript"><!--
document.write(emailTo());
// --></script>

<!-- Script Size: 1.84 KB -->