Return To Home Page - Link to "The Wanker" - Contact Us


Return To Home Page

Send Email Using Bamboo Mailer



<%
   Dim ObjSendMail
   Set ObjSendMail = Server.CreateObject("Bamboo.SMTP")
    
   ObjSendMail.Server = "mail.somesite.com"
   ObjSendMail.From = "someone@somesite.com"
   ObjSendMail.Rcpt = "somebodyelse@somesite.com"
   ObjSendMail.Message = "your email body"
   ObjSendMail.Subject = "your subject"
  
   On Error Resume Next
 
   ObjSendMail.Send
 
   If Err <> 0 Then
      Response.Write "Error encountered: " & Err.Description
   End If
  
   Set ObjSendMail = nothing
%>



See all our examples of sending email from ASP:

Send Email Using OCXMail Objects from Flicks Software
Send Email Using QuickSoft EasyMail Objects from QuickSoft
Send Email Using Simple Mail from Adiscon Software
Send Email Using Bamboo Mailer
Send Email Using Dundas Mailer from Dundas Software
Send Email Using SA-SMTP Mail from SoftArtisans Software
Send Email Using JMail 4 from Dimac Software
Send Email Using ASPSMARTMAIL from ASPSMART Software
Send Email Using ASPQMail from ServerObjects Software
Send Email Using ASPMail from ServerObjects Software
Send Email Using ASPEmail from Persits Software
Using CDONTS to send email from ASP.
Sending email using CDOSYS

Banner
ASP (Active Server Pages) is a technology developed by Microsoft. Pages using ASP are primarily developed in JScript, or VBScript and are integrated into the HTML of your Web pages. The ASP code is compiled on-the-fly by the server and the resulting output is standard HTML. By using ASP, Web pages can be dynamic, full of ever-changing content, and browser independent.

 

Link to "The Wanker"
© 2007 CodeWanker - Active Server Pages Articles, Code Snippets, & Tutorials