RE: Retrieving E-mail Body message without extracting signature part of email

H loginerror,

I really need help ASP I have manage to create a outlook read email.but am trying to get the body message extracting body message without signature part please help

1 Like

Hi @laurent_fodderie

I made your topic public as it will increase your chances of getting help from our entire community :slight_smile:

Typically it should be as easy as using this line of code:
yourEmails(0).Body

See example here:

1 Like

Thank you. I have retrieve email body. But how can I remove the signature part of the message?

1 Like

You can replace a value in your string like that:

inputString.Replace("valueToLookFor","valueToChangeTo")

There is a lot of examples on our Forum of this type of data manipulation :slight_smile:

Thank you.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.