Special character Get IBM Notes Mail Messages

Hello,
when I use the acitivity Get IBM Notes Mail Messages, the emailbody doesn´t recognize special character (e.g. ü,ä,ö).

I get instead =C3=BC für ü.

What can i do?

Regards,
Martin

grafik
is it = or %

It´s = and not %

e.g Nürnberg is N=C3=BCrnberg

Maybe it is about this:

Feel free to share with us some more details e.g. how the text is accessed. So we can exclude any possible character encoding issues

Hello,

now i used the replace acitivity to change the emailtext to % instead of =.

What is the variable type to change system.web.httputility.decode(recievedEmail) to an string?

Thanks a lot.

Regards
Martin

its a method:

we were a little restrained, as we were waiting for the feedback if it is QP-Coding. In general we would also expect the typically linebreaks

However with a =HH | H a Hex Character we can try to replace = to %

Also there is a chance that a nuget / library can help us as well

Sorry. My problem is still not solved.

grafik

When i use the replace acitivity, how should I use the assign with variable type to encode my emailtext?

Had you tried?

Assign Activity
strCleansed = System.Text.RegularExpressions.Regex.Replace(YourTextVar, YourPatternVar, "%")

Assign Activity:
strDecoded = System.Web.HttpUtility.UrlDecode(strCleansed)

All variables are of String DataType

Problem solved.

Thanks a lot.

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