The problem now is that this line of code controls which mail program you are using (ie persits, aspmail, etc.) Your initial code indicated you were using persits, but the code sample posted earlier for you as an example was for ASPMail (SMTPsvg.Mailer is the dll object for ASPMail).
Your system is telling you it can't create this object -- most likely because it does not have ASPMail installed.
As such, I recommend that you go back to creating the correct persits object, and enter a fully qualified email address. Simplify the BODY variable (get rid of the Chr's for now), also don't attempt any attachments at this time.
Persits details are available from
including some code samples, and specifics on the methods and how to register its dll. Make sure you have it installed correctly on your web server -- or your code won't execute no matter what you try.
Keep trying!
Here is the basic sample they provide:
<%
Set Mail = Server.CreateObject("Persits.MailSender"

Mail.Host = "smtp.smtp-server.com" ' Specify a valid SMTP server
Mail.From = "sales@veryhotcakes.com" ' Specify sender's address
Mail.FromName = "VeryHotCakes Sales" ' Specify sender's name
Mail.AddAddress "andy@andrewscompany.net", "Andrew Johnson, Jr."
Mail.AddAddress "paul@paulscompany.com" ' Name is optional
Mail.AddReplyTo "info@veryhotcakes.com"
Mail.AddAttachment "c:\images\cakes.gif"
Mail.Subject = "Thanks for ordering our hot cakes!"
Mail.Body = "Dear Sir:" & Chr(13) & Chr(10) & _
"Thank you for your business."
On Error Resume Next
Mail.Send
If Err <> 0 Then
Response.Write "Error encountered: " & Err.Description
End If
%>