Hey guys,
I am struggling with splitting some sender arrays in my needed format.
I have created a process with getting my Outlook Mail messages (unread and in my explicit folder), this works fine.
Now i would like to split my sender message, to get the full email adress.
This is my code…
For splitting my sender - sender.Split(CChar(“<”))
My Problem is, i cant access the splitted string… And I dont know why.
I try to reach my strSender with the strSender.ToString() method but I just receive the type of the element…
I normally would split my String like this…
Receive this string …
“Myname, IsmyName(Department)” Myname.ismymail@mail.com
- Split it into Myname.ismymail@mail.com>
- Split it into Myname.ismymail@mail.com
Does anybody know how to solve the error?
Thanks!
Greetings