Cambiar idioma a Espaņol
Call us: 845.475.8APP (8277)
  Search a Domain
 
  latest news  
  Knowledgebase Details.
  New domain appsolutions.co
7/25/2010

Now you can access APP Solutions through www.appsolutions.co

  read more      
  APP Solutions presents www.pc-minipc.com
7/19/2010

www.pc-minipc.com is a company looking to revolutionize the market for desktop computers. Mini PC will change the way many people see the desktop Computer; giving them an unique style in a very small Computer, without decreasing the PC's performance.

For more information about Mini PC, please visit: www.pc-minipc.com or www.tiny-computers.com

  read more      
CDOSYS (formerly CDONTS)

The CDOSYS mailing component is supported and recommended. Below is an example of how to use the mailing component in ASP:


Dim Subject, Body, SenderEmail, RecipientEmail, SMTPServer, SMTPusername, SMTPpassword

SenderEmail = "me@mydomain.tld"
RecipientEmail= "someone@somedomain.tld"
SMTPserver = "mail.mydomain.tld"
SMTPusername = "me@mydomain.tld"
SMTPpassword = "mypassword"

Subject = "Hello"
Body = "This is a test. Please ignore."


sch = "http://schemas.microsoft.com/cdo/configuration/"
Set cdoConfig = CreateObject("CDO.Configuration")
With cdoConfig.Fields
.Item(sch & "sendusing") = 2
.Item(sch & "smtpserver") = SMTPserver
.Item(sch & "smtpserverport") = 25
.Item(sch & "smtpauthenticate") = 1
.Item(sch & "sendusername") = SMTPusername
.Item(sch & "sendpassword") = SMTPpassword
.Item(sch & "smtpusessl") = False
.Item(sch & "connectiontimeout") = 100
.update
End With
Const cdoSendUsingPickup = "c:\inetpub\mailroot\pickup"
Set cdoMessage = CreateObject("CDO.Message")
With cdoMessage
Set .Configuration = cdoConfig
cdoMessage.From = SenderEmail
cdoMessage.To = RecipientEmail
cdoMessage.Subject = Subject
cdoMessage.TextBody = Body
cdoMessage.Send
End With
Set cdoMessage = Nothing
Set cdoConfig = Nothing