I am writing VBA code in Outlook 2007 to extract email address from emails.
I am able to read the body as a whole through a variable
How do I extract email address from the variable?
I am writing VBA code in Outlook 2007 to extract email address from emails.
I am able to read the body as a whole through a variable
How do I extract email address from the variable?
Why the body? Have you looked at the MailItem.Recipients collection (Recipient.Address) and the MailItem.SenderEmailAddress property?