- VB,VBA
- 2014-06-06 - 更新:2014-08-19
Outlookのメッセージファイル(.msg)から送信元アドレスや件名、本文等のデータを取り出すことができます。
よくあるのは、受信トレイのメールからデータを取り出したりしますが、今回は任意の場所にコピーしたメッセージファイル(.msg)からデータを取り出す方法をご紹介します。
まずは宣言
Dim OL As Object Dim msg As Object
Outlookオブジェクトを生成
Set OL = CreateObject("Outlook.Application")
msgファイルを指定
strFileName = "c:\sample.msg"
メッセージファイルをオブジェクトに読み込む
Set msg = OL.CreateItemFromTemplate(strFileName)
各種データを取得します。
Debug.Print "SentOnBehalfOfName: " & msg.SentOnBehalfOfName Debug.Print "SenderName: " & msg.SenderName Debug.Print "ReceivedByName: " & msg.ReceivedByName Debug.Print "ReceivedOnBehalfOfName: " & msg.ReceivedOnBehalfOfName Debug.Print "ReplyRecipientNames: " & msg.ReplyRecipientNames Debug.Print "To: " & msg.To Debug.Print "CC: " & msg.CC Debug.Print "BCC: " & msg.Bcc Debug.Print "Subject: " & msg.Subject Debug.Print "Body: " & msg.Body Debug.Print "HTMLBody: " & msg.HTMLBody 'Debug.Print "Recipients: " & msg.Recipients Debug.Print "SenderEmailAddress: " & msg.SenderEmailAddress
プロパティについてはMSDNを参照しましたが、Recipients
はプロパティが存在しないとエラーが発生したのでスキップしています。
続きを読む…»