ASP Email script getting picked up by spam filters in my workplace.... how to avoid?

ASP Email script getting picked up by spam filters in my workplace.... how to avoid?

am 07.03.2007 00:13:23 von itfetish

first off, no I'm not some international spam lord, I created a
electronic sign in and out book in ASP using VBScript for my
workplace.

The person signs out to a certain time, if they are due to sign back
in and havent after an hour it sends them a reminder email.

I also have a feature where if they are signed out you can send them a
phone message via email form.

I wrote this in PHP, but converted it to ASP so that it tied in well
with all of our other pages.


I had this problem in php with the basic mail function, so I
downloaded a script that added lots of headers and otherstuff to the
email and my spam problems were solved.

Is there anything for ASP that does this? I am using
Persists.Mailsender at the moment, which does:

On Error resume Next
Set Mail = Server.CreateObject("Persits.MailSender")
'Dim Mail As MailSender
Set Mail = New MailSender
With Mail
.Reset
.ContentTransferEncoding = "Quoted-Printable"
.Host =
.From =
.FromName =
.AddAddress
.AddReplyTo
.Subject =
.Body =

End With
On Error Resume Next
Mail.Send
If Err <> 0 then
Response.Write "An error occurred: " & Err.Description
End If

If there is no script, how do I get my SBS Server to stop blocking
these from being sent? The form address is my email address
m.name@mycompany.com.au and they are being sent to just internal
people, so if I could just tell it to stop blocking emails from my
address that would be good.

Re: ASP Email script getting picked up by spam filters in my workplace.... how to avoid?

am 07.03.2007 02:09:32 von Adrienne Boswell

Gazing into my crystal ball I observed itfetish@gmail.com writing in
news:1173222803.072879.195650@n33g2000cwc.googlegroups.com:

> I wrote this in PHP, but converted it to ASP so that it tied in well
> with all of our other pages.
>
>
> I had this problem in php with the basic mail function, so I
> downloaded a script that added lots of headers and otherstuff to the
> email and my spam problems were solved.
>
> Is there anything for ASP that does this? I am using
> Persists.Mailsender at the moment, which does:
>



You can still add headers. What headers were added when the page was in
PHP? Just reproduce those same headers.

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share