The
"mailto:" protocol understands ASCII only. For Non-ASCII characters
you can use the notation %nn where nn is the hexadecimal code of the character,
e.g. "%F6" instead of "ö".
If you have any
variables in your text that may contain Umlaut characters you can use the
"ReplaceText" command to carry out this substitution.
Example:
Set text[x]
"&V[companyname]"
ReplaceText
"x" from="ö" To="%F6"
ReplaceText
"x" from="ü" To="%FC"
...
|