asp中用CDO發送簡單電子郵件

來源:互聯網
上載者:User

 用CDO發送簡單電子郵件的例子。很簡單。帶入如下:

 

 Const   cdoSendUsingMethod="http://schemas.microsoft.com/cdo/configuration/sendusing"     
  Const   cdoSendUsingPort=2     
  Const   cdoSMTPServer="http://schemas.microsoft.com/cdo/configuration/smtpserver"     
  Const   cdoSMTPServerPort="http://schemas.microsoft.com/cdo/configuration/smtpserverport"     
  Const   cdoSMTPConnectionTimeout="http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout"     
  Const   cdoSMTPAuthenticate="http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"     
  Const   cdoBasic=1     
  Const   cdoSendUserName="http://schemas.microsoft.com/cdo/configuration/sendusername"     
  Const   cdoSendPassword="http://schemas.microsoft.com/cdo/configuration/sendpassword"     
    
  Dim   objConfig    '   As   CDO.Configuration     
  Dim   objMessage   '   As   CDO.Message     
  Dim   Fields       '   As   ADODB.Fields     
    
  Set   objConfig   =   Server.CreateObject("CDO.Configuration")     
  Set   Fields   =   objConfig.Fields     
    
  With   Fields     
    .Item(cdoSendUsingMethod)   =   cdoSendUsingPort     
    .Item(cdoSMTPServer)   =   "mail.cccar.com.cn"          'smtp伺服器位址     
    .Item(cdoSMTPServerPort)   =   25     
    .Item(cdoSMTPConnectionTimeout)   =   10     
    .Item(cdoSMTPAuthenticate)   =   cdoBasic     
    .Item(cdoSendUserName)   =   "使用者名稱"   '寄件者的使用者名稱     
    .Item(cdoSendPassword)   =   "口令"     '寄件者的密碼     
    .Update     
  End   With     
    
  Set   objMessage   =   Server.CreateObject("CDO.Message")     
  Set   objMessage.Configuration   =   objConfig     
    
  With   objMessage     
    .To         =   "ljc@cccar.com.cn"     '接收者的郵件地址     
    .From       =   "ljc@cccar.com.cn"     '寄件者的郵件地址     
    .Subject    =   "Test of CDO Sending Email in asp"    '郵件的標題     
    .TextBody   =   "my email test ,this email is sent by cdo "    '郵件的本文    
    .CC         =   ljc@oa.cccar.com.cn;sxy@cccar.com.cn  '抄送地址
    .Send     
  End   With     
    
  Set   Fields       =   Nothing     
  Set   objMessage   =   Nothing     
  Set   objConfig    =   Nothing     
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.