是的 – 取决于您使用的
Windows版本.假设其中一个版本 – CDO.Message工作得很好.
原文链接:https://www.f2er.com/vb/255225.htmlSub SendMessage(MailFrom,MailTo,Subject,Message) Dim ObjSendMail Set ObjSendMail = CreateObject("CDO.Message") 'This section provides the configuration information for the remote SMTP server. With ObjSendMail.Configuration.Fields .Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 'Send the message using the network (SMTP over the network). .Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smpt server Address" .Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25 .Item ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False 'Use SSL for the connection (True or False) .Item ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60 ' If your server requires outgoing authentication uncomment the lines below and use a valid email address and password. ' .Item ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 'basic (clear-text) authentication ' .Item ("http://schemas.microsoft.com/cdo/configuration/sendusername") = MailFrom ' .Item ("http://schemas.microsoft.com/cdo/configuration/sendpassword") = yourpassword .Update End With 'End remote SMTP server configuration section== ObjSendMail.To = MailTo ObjSendMail.Subject = Subject ObjSendMail.From = MailFrom ' we are sending a html email.. simply switch the comments around to send a text email instead ObjSendMail.HTMLBody = Message 'ObjSendMail.TextBody = Message ObjSendMail.Send Set ObjSendMail = Nothing End Sub