Steve Easton wrote:
> See if your host has Spam Assassin available on their servers.
> If so, you can have email addresses in your pages and forms.
> Spam Assassin will stop 95 percent of the spam.
> ( if not more )
Not the OP,
That sounds great.
I doubt my host (a website provided by my ISP ) would have that.
So is this a reasonable alternative.
Have a tag with onclick - "sendEmail()"
function sendEMail()
{
var text = 'Email<br>Us'
var userTo = 'user'
var domainTo = 'domain.com'
var userCC = ''
var domainCC = ''
var userBCC = ''
var domainBCC = ''
var subject = 'Response from ' + top.document.title
var body = 'Please enter message here'
var CC = (userCC != '') ? userCC + '@' + domainCC : userCC
var BCC = (userBCC != '') ? userBCC + '@' + domainBCC : userBCC
document.write
( '<a href="mailto:'
+ userTo + '@' + domainTo
+ '?subject=' + subject
+ '&cc=' + CC
+ '&bcc=' + BCC
+ '&body=' + body + '">'
+ '<img src="images/display/mailto.gif">' + text + '</a>')
}
This is based on JIMCO's SpamSpoiler, and I believe it foils most of the
automatic spammers
--
Cheers,
Trevor L.
Website:
http://tandcl.homemail.com.au