outlook - Parse email address -


i writing vba code in outlook 2007 extract email address emails.

i able read body whole through variable

how extract email address variable?

one method described here.

sstring = "my1@email.com xxx my2@email.com yyy my3@email.com" asstring = split(sstring, " ") = 0 ubound(asstring)     if asstring(i) "*@*.*"         semail = semail & "," & asstring(i)     end if next  msgbox mid(semail, 2) 

Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -