How to convert mail address type - Exchange to SMTP
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
17-04-18 02:17 PM
Hi,
I am using MAPIEx to 'Get' emails but sometime I am getting Exchange address in sender email address filed instead of SMTP address.
Could someone help me with solution or code on how to convert or get SMTP address if I am getting Exchange address.
Below is Exchange address which I am getting
/O=EXCHANGELABS/OU=EXCHANGE ADMINISTRATIVE GROUP (FYDIBOHF23SPDLT)/CN=RECIPIENTS/CN=46932ED2875B4644A647DFA0CA3BDF1F-Nikhil Saini
Regards
Nikhil
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
23-04-18 04:34 PM
Hello guys,
I'm having the same issues since updating to MAPIEx Version 2.0.6
Any ideas?
Thans
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-05-18 01:13 PM
Hi both,
we had also similar program.
We found solution with code stage:
https://msdn.microsoft.com/en-us/library/office/ff184624.aspx
BR,
Martin
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
05-01-19 03:59 AM
You got sample code you can post here Martin?
Pranav
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-01-19 09:46 PM
Go into the code stage for Get Mail. Around ln 43, you should be able to modify the code to look like this.
Sender_Name = msg.SenderName if msg.SenderEmailType = ""EX"" then Sender_Email_Address = msg.Sender.GetExchangeUser.PrimarySmtpAddress else Sender_Email_Address = msg.SenderEmail end if Subject = msg.Subject
