メッセージの本文にホストされた画像を挿入しようとしています。ここで私はこれまでやっていることです:私の私の電子メールの本文にvba outlook埋め込み画像のURL
<html><img src='http://example.com/pixel.php?to=" + mailItem.To + "></html>
:
上記インサートは画像を埋め込む実際にdoesntのPrivate Sub inspectors_NewInspector(ByVal Inspector As Microsoft.Office.Interop.Outlook.Inspector) Handles inspectors.NewInspector
Dim mailItem As Outlook.MailItem = TryCast(Inspector.CurrentItem, Outlook.MailItem)
If Not (mailItem Is Nothing) Then
If mailItem.EntryID Is Nothing Then
mailItem.Subject = "Test"
mailItem.Body = mailItem.Body + "<html><img src='http://example.com/pixel.php?to=" + mailItem.To + "></html>"
End If
End If
End Sub
は、それだけの行を追加します。
どのように埋め込むことができますか?
に切り替えmailItem.BodyあなたはmailItem.HTMLBody – Sorceri