Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: ASPMail or ASPMailer


Message #1 by "Enzo Zaragoza" <enzaux@g...> on Wed, 17 Oct 2001 05:22:44 +0800
Hey guys I need this asap.  Where I could find download for ASPMailer?  Is

this a component?  Where would I put or install this?  Do different asp

mailers have different syntax?



Thanks,



Enzo



Message #2 by "Diegel, Jerry" <Jerry.Diegel@H...> on Tue, 16 Oct 2001 14:27:06 -0700
Unless your doing something real fancy I would recommend just using CDO.

Unless of course your ISP has something against it.



-----Original Message-----

From: Enzo Zaragoza [mailto:enzaux@g...]

Sent: Tuesday, October 16, 2001 4:23 PM

To: ASP Web HowTo

Subject: [asp_web_howto] ASPMail or ASPMailer





Hey guys I need this asap.  Where I could find download for ASPMailer?  Is

this a component?  Where would I put or install this?  Do different asp

mailers have different syntax?



Thanks,



Enzo



Message #3 by "Enzo Zaragoza" <enzaux@g...> on Wed, 17 Oct 2001 05:46:06 +0800
where I could get the component?  I really need this very badly.  pls 

help

  ----- Original Message -----

  From: Diegel, Jerry

  To: ASP Web HowTo

  Sent: Wednesday, October 17, 2001 5:27 AM

  Subject: [asp_web_howto] RE: ASPMail or ASPMailer





  Unless your doing something real fancy I would recommend just using 

CDO.

  Unless of course your ISP has something against it.



  -----Original Message-----

  From: Enzo Zaragoza [mailto:enzaux@g...]

  Sent: Tuesday, October 16, 2001 4:23 PM

  To: ASP Web HowTo

  Subject: [asp_web_howto] ASPMail or ASPMailer





  Hey guys I need this asap.  Where I could find download for ASPMailer? 

 Is

  this a component?  Where would I put or install this?  Do different 

asp

  mailers have different syntax?



  Thanks,



  Enzo



Message #4 by "Enzo Zaragoza" <enzaux@g...> on Wed, 17 Oct 2001 07:26:15 +0800
can I use ASPMail in Personal Webserver (PWS)?



  ----- Original Message -----

  From: Enzo Zaragoza

  To: ASP Web HowTo

  Sent: Wednesday, October 17, 2001 5:22 AM

  Subject: [asp_web_howto] ASPMail or ASPMailer





  Hey guys I need this asap.  Where I could find download for ASPMailer? 

 Is

  this a component?  Where would I put or install this?  Do different 

asp

  mailers have different syntax?



  Thanks,



  Enzo



Message #5 by "Drew, Ron" <RDrew@B...> on Wed, 17 Oct 2001 07:46:11 -0400
use CDONTS

    Set oMail = Server.CreateObject("CDONTS.Newmail")

    With oMail

        .To = sRecip

        .From = sFrom

        .Subject = sSubject

        .Body = sMessage

        .send

    End With

    Set oMail = Nothing




  Return to Index