- ©«¤l
- 62
- ¥DÃD
- 13
- ºëµØ
- 0
- ¿n¤À
- 109
- ÂI¦W
- 0
- §@·~¨t²Î
- Win 10®a¥Îª©
- ³nÅ骩¥»
- Office 2013
- ¾\ŪÅv
- 20
- ©Ê§O
- ¤k
- ¨Ó¦Û
- ·s¥_
- µù¥U®É¶¡
- 2016-1-27
- ³Ì«áµn¿ý
- 2024-8-12
|
[µo°Ý] ¨S¦³©w¸q³oÓsub©Îfunction
¦U¦ì¤j¤j¦n¡G
³Ìªñ¦b³]©wExcelªí®æ¥ÎVBA Email¥X¥h¡A
¥H¤Uµ{¦¡½X쥻³]©w¦n¤F¡A¤@¤Á¥¿±`¥i¥Î¡C
¦]¬°±N¤£¬ÛÃöªº¨ä¥L¼Ò²Õ§R°£«á¡A³oÓ¼Ò²Õ°õ¦æ®É«o¥X²{¡u¨S¦³©w¸q³oÓsub©Îfunction¡v¡A
µM«á¿ù»~°T®§°±¦bSub CDO_TEST_OK()
¦ÓRangetoHTML¥X²{¤Ï¥Õ¡A
µ{¦¡½X¦p¤U¡A½Ð¦U¦ì¤j¤jÀ°À°¦£¡AÁÂÁÂ~~- Sub CDO_TEST_OK()
- Dim objCDO As Object
- Dim strCfg As String
- Set objCDO = CreateObject("CDO.Message")
- strCfg = "http://schemas.microsoft.com/cdo/configuration/"
- With objCDO
- '.Sender = "" '
- .From = "[email protected]" '±H¥óªÌ
- .To = "[email protected]" '±Hµ¹½Ö
- '.Fields("urn:schemas:mailheader:X-Priority") = 1 ' Priority = PriorityUrgent °ªÀu¥ý¶¶§Ç
- '.Fields("urn:schemas:mailheader:return-receipt-to") = "" ' n¨DŪ¨ú¦^±ø
- ' .Fields("urn:schemas:httpmail:importance") = 2 ' Importance = High
- ' .Fields("urn:schemas:httpmail:priority") = 1 ' Priority = PriorityUrgent
- .Fields.Update ' §ó·sÄæ¦ì
- .Subject = "Salary " & Range("A8") & "-" & Range("C8") '¥D¦®
- '.TextBody = "ORZ" ' Text ¤å¦r®æ¦¡«H¥ó¤º®e
- ' ©Î HTML ºô¶®æ¦¡«H¥ó¤º®e
- .HTMLBody = "<HTML>" & _
- "<BODY>" & _
- "<table border=""1"" width=""100%"">" & _
- "<tr><td>I</td><td>am</td><td>Hammer</td><td>!</td></tr>" & _
- "<tr><td>Who</td><td>r</td><td>u</td><td>?</td></tr>" & _
- "</table>" & _
- "</BODY>" & _
- "</HTML>"
- .HTMLBody = RangetoHTML(Range("A1:J31")) '¶l¥ó¤º¤å(¬°EXCELªºªí®æ½d³ò)½Ð¨Ì»Ý¨Dקï
- '.AddAttachment "C:\AttFile.zip" ' ªþ¥[ÀÉ®×
- '.CC = "°Æ¥»@yahoo.com.tw" ' °Æ¥»
- '.BCC = "±K¥ó°Æ¥»@hotmail.com.tw" ' ±K¥ó°Æ¥»
- .Configuration(strCfg & "sendusing") = 2 ' Sendusing = SendUsingPort
- .Configuration(strCfg & "smtpserver") = "xxxs.com.tw" ' SMTP Server
- '.Configuration(strCfg & "smtpserver") = "msa.hinet.net" ' SMTP Server
- ' .Configuration(strCfg & "smtpserverport") = 25 ' SMTP Server Port ( ¹w³]§Y¬° 25 )
- ' SMTP Server ¦p»Ýµn¿ý , «h»Ý³]©w UserName / Password
- ' .Configuration(strCfg & "sendusername") = "UserName" ' Send User Name
- ' .Configuration(strCfg & "sendpassword") = "Password" ' Send Password
- .Configuration.Fields.Update ' §ó·s (Äæ¦ì) ²ÕºA
- ' .DSNOptions = 4 ' ¦^¶Ç«H¥ó¶Ç°eª¬ºA
- ' cdoDSNDefault = 0 , DSN commands are issued.
- ' cdoDSNDelay = 8 , Return a DSN if delivery is delayed.
- ' cdoDSNFailure = 2 , Return a DSN if delivery fails.
- ' cdoDSNNever = 1 , No DSNs are issued.
- ' cdoDSNSuccess = 4 , Return a DSN if delivery succeeds.
- ' cdoDSNSuccessFailOrDelay = 14 ,Return a DSN if delivery succeeds, fails, or is delayed.
- .Send ' ¶Ç°e
- End With
- Set objCDO = Nothing
- End Sub
½Æ»s¥N½X |
|