最新消息

[公告2014/05/30] 如有需要將部落格中,任何一篇文章的程式碼使用在商業用途,請與我聯繫。

[公告2015/04/26] Line版的 iInfo程式與投資應用 群組已上線想加入的朋友們,請先查看 "入群須知" 再與我聯繫 Line : aminwhite5168,加入請告知身分與回答 "入群須知" 的問題。

[公告2018/04/22] 台北 Python + Excel VBA 金融資訊爬蟲課程,課程如網頁內容 金融資訊爬蟲班:台北班 Python 金融資訊爬蟲、EXCEL VBA 金融資訊爬蟲

[公告2019/01/08] 請注意:我再次重申,部落格文章的程式碼,是要提供各位參考與學習,一旦網頁改版請自行修改,別要求東要求西要我主動修改,你們用我寫東西賺錢了、交差了,請問有分我一杯羹嗎?既然賺錢沒分我,請問有什麼理由要求我修改,如果沒能力改,就花錢來找我上課。

[公告2019/12/01] 若各位有 Excel VBA 案子開發需求,歡迎與我聯繫,可接案處理。

[公告2020/05/22] 頁面載入速度慢,起因為部分JS來源(alexgorbatchev.com)失效導致頁面載入變慢,目前已做調整,請多見諒。

2016年7月9日 星期六

Excel VBA使用CDO物件,寄送盤後冰火能量圖

前面寫了8篇冰火能量圖的文章,這裡在Excel VBA檔案中加入Email的寄送功能,執行時間在每天下午13:45期貨收盤後,寄送出 市場多空走勢.jpg、大戶走勢.jpg、買賣力差走勢.jpg的圖片。
傳送圖片有3種方法:
  1. 附檔。
  2. 嵌入圖片。
  3. 寄送圖片連結。
以下就以嵌入圖片到Email中來說明,如下程式碼:
'建立< img src="cid:xxx.jpg" />標籤串
Function ChartCID()
    ChartCID = "市場多空走勢:<br/ ><img src=""cid:市場多空走勢.jpg"" /><br/ >" & _
               "大戶走勢:<br/ ><img src=""cid:大戶走勢.jpg"" /><br/ >" & _
               "買賣力差走勢:<br/ ><img src=""cid:買賣力差走勢.jpg"" /><br/ >"
End Function

Sub 藉由Hotmail寄信()
    Dim Mail As CDO.Message
     
    Set Mail = New CDO.Message
    
    With Mail.Configuration.Fields
        .Item("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = True
        
        .Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
        
        .Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "smtp-mail.outlook.com"
        
        .Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
        
        .Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
        
        .Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "white_5168@hotmail.com"
        
        .Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "***********"
        
        .Update
    End With
    
    With Mail
        .Subject = "VBA透過Hotmail寄mail"
        .From = "white_5168@hotmail.com"
        .To = "white5168@gmail.com;white-5168@yahoo.com.tw;white_5168@hotmail.com"
        .CC = "white_5168@hotmail.com"
        .HTMLBody = ChartCID
        '指定插入圖片的實際位置
        .AddRelatedBodyPart "C:\Users\Amin\Desktop\Pic\20160706\市場多空走勢.jpg", "市場多空走勢.jpg", 1
        .AddRelatedBodyPart "C:\Users\Amin\Desktop\Pic\20160706\大戶走勢.jpg", "大戶走勢.jpg", 1
        .AddRelatedBodyPart "C:\Users\Amin\Desktop\Pic\20160706\買賣力差走勢.jpg", "買賣力差走勢.jpg", 1
        .HTMLBodyPart.Charset = "utf-8"
        .Send
    End With

    MsgBox "信件已寄出", vbInformation, "寄出"

    Set Mail = Nothing
 End Sub

程式碼說明:
第02~06行:建立< img src="cid:xxx.jpg" />標籤串。
第38~40行:指定插入圖片物件的實體位置。

執行結果:

參考資料: