MailItem.SenderEmailType プロパティ (Outlook)

インターネット アドレスの場合は "SMTP"、Microsoft Exchange サーバー アドレスの場合は "EX" など、Outlook アイテムの送信者の電子メール アドレスのエントリの種類を表す 文字列型 (String ) を返します。読み 取り 専用。

構文

expressionSenderEmailType

expressionMailItem オブジェクトを表す変数です。

次の Microsoft Visual Basic for Applications (VBA) の例は、 SenderEmailType プロパティを使用する方法を示します。 エラーなしでこの例を実行するには、アクティブなインスペクター ウィンドウで電子メール アイテムを開く必要があります。

Sub SenderEmailTypeExample() 
 
 Dim mail As Outlook.MailItem 
 
 
 
 Set mail = Application.ActiveInspector.CurrentItem 
 
 MsgBox mail.SenderEmailType 
 
 If mail.SenderEmailType = "SMTP" Then 
 
 MsgBox "Message from Internet email user." 
 
 Else 
 
 If mail.SenderEmailType = "EX" Then 
 
 MsgBox "Message from internal Exchange user." 
 
 End If 
 
 End If 
 
End Sub

関連項目

MailItem オブジェクト

サポートとフィードバック

Office VBA またはこの説明書に関するご質問やフィードバックがありますか? サポートの受け方およびフィードバックをお寄せいただく方法のガイダンスについては、Office VBA のサポートおよびフィードバックを参照してください。