%
' change to address of your own SMTP server
strHost = "202.123.133.250"
If Request("Send") <> "" Then
Set Mail = Server.CreateObject("Persits.MailSender")
' enter valid SMTP host
Mail.Host = strHost
Mail.From = Request("From") ' From address
Mail.FromName = Request("FromName") ' optional
Mail.AddAddress "info@redshift.in"
' message subject
Mail.Subject = Request("Subject")
' message body
Mail.Body = Request("Body")
strErr = ""
bSuccess = False
On Error Resume Next ' catch errors
Mail.Send ' send message
If Err <> 0 Then ' error occurred
strErr = Err.Description
else
bSuccess = True
End If
End If
%>
|
|
 |
 |
 |
The
page you are looking for
is currently unavailable. |
|
 |
More...
|
|
|
 |
The
page you are looking for
is currently unavailable. |
|
 |
More...
|
| |
|
| |
|
| |
|
| |
|
|
|
| |
 |
|
|
 |
 |
|
|
 |
 |
 |
Copyright
2003 redshift Technologies PVT. LTD. |