Below you find an ASP script example which will alow you to cut & paste an email to Aloaha Check it.
'Copyright 2005 by www.aloaha.com
'furhter questions please send to info@aloaha.com
or visit our Forum at:
'http://www.aloaha.com/html/portal
<% @Language = "VBScript" %>
<%
'Copyright 2005 www.aloaha.com
'coded by Frank Hellmann
'frank.hellmann@aloaha.com
on error resume next
Response.buffer = false
Response.Expires = -1
Server.ScriptTimeout = 60
dim email
dim pop
dim dummy
if email="" then email=Request.Form("textarea")
if email="" then email=Request.Form("textarea")
if email<>"" then
Set pop=CreateObject("module.wrapper")
dummy=lcase(trim(cstr(pop.check_mail(cstr(email), Nothing, "pop3"))))
if dummy="" then dummy="neutral"
if dummy="0" then dummy="neutral"
if dummy="1" then dummy="whitelisted"
if dummy="white" then dummy="whitelisted"
if dummy="2" then dummy="blacklisted"
if dummy="black" then dummy="blacklisted"
response.write dummy
Set pop=Nothing
Response.End
end if
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Aloaha SPAM Engine Web Interface</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="aloaha" method="post" action="">
<textarea name="textarea" cols="100" rows="25"><%
response.write email %></textarea>
<br><br>
<input type="submit" name="Submit" value="Submit">
</form>
</body>
</html>