Sitebot Technology

 

HOME
how to setup a shop
Hosting Features
how to setup a shop
Click it for plan and price
how to setup a shop
e-commerce
internet commerce
Place an order today!
web marketing
Tech Supports
web hosting
You can depend on us!
web design
Contact us for better results!
guarantee.gif (3314 bytes)
 
Tech Support

Converting MPS.SendMail to ASPMail

The function that follows will allow you to quickly replace MPS.SendMail in all of your ASP scripts.

To use the function, first place it at the begining of any scripts that currently use MPS.Sendmail. Once you've done that, remove any lines reading 'Set something = Sever.CreateObject ("MPS.SendMail")', then replace all occurances 'something.SendMail' with 'sendMessage'.

For example, this:
     something = Server.CreateObject("MPS.SendMail")
     errorCode = something.SendMail ("From", "To", "Subject", "Body")

would become this:
     errorCode = sendMessage ("From", "To", "Subject", "Body")


<%
Function sendMessage (mailFrom, mailTo, mailSubject, mailBody)
    ' sendMessage takes the same parameters as MPS.SendMail
    ' response = sendMessage (From, To, Subject, Body)
    Set mailer = Server.CreateObject ("SMTPsvg.Mailer")

    mailer.FromAddress = mailFrom
    mailer.AddRecipient "", mailTo
    mailer.Subject = mailSubject
    mailer.BodyText = mailBody

    mailer.RemoteHost = "mail.rapidsite.net"

    If mailer.Sendmail then                ' Send message
        sendMessage = True                 ' Email was sent ok, return True
    else                                   ' Send Failure   
        sendMessage = mailer.Response      ' Return error message
    end if

end function
%>

Back to Main Menu


[ Home | Features | Plans | E-Commerce | Order | Support | Company | Contact ]

 

©1995-2002 Sitebot Technology, Inc.