Copyright © RDSIndia.com,
All Rights Reserved
RDS SUPPORTHOMESERVER BASICSCONFIGURING FTP

RDS SUPPORTCONFIGURING E-MAILSTRANSFERRING DATABASETRANSFER TO RDS SERVERDOMAIN STATISTICSPOST YOUR QUERYSAMPLE SCRIPTS

Sample Scripts - ASP Mail Script for Windows NT

 

This is the SMPT svg Mail Component which can be used in ASP Programming.

The variables in the component have to be changed. 


SMTP svg 

<% 

Set Mailer = Server.CreateObject("SMTPsvg.Mailer") 
Mailer.FromName = "Shinoj" 
Mailer.FromAddress= "shinoj@rdsindia.com" 
Mailer.RemoteHost = "smtp.rdsindia.com" 
Mailer.AddRecipient "webmaster", "webmaster@rdsindia.com" 
Mailer.Subject = "Testing component" 
Mailer.BodyText = "Test Mail." & VbCrLf & "Your component is working" 
if Mailer.SendMail then 
    Response.Write "Mail sent..." 
else 
    Response.Write "Mail send failure. Error was " & Mailer.Response

end if 

%>