Special Characters do not work when using OpenURL

When attempting to create an email with a pre-set subject, the following typically works.

OpenURL "mailto:robert@ameeti.net"+"?subject="+«Description»

But if the Description happens to have somethink like ‘Part is 3" Long’ or ‘Use PN 10/2’, a failure appears. The " and the / characters do not flow to the email without an error.

What might be the fix? I’ve tried most of the encode options and the quoted(

I don’t have any personal experience with this, but is the encodeurlquery( function one of those that you tried?

That took care of the / but not the quote.

To resolve that, I used the replace (which could well have taken care of the / as well.

replace(«Name»,'"',"%22")

Thanks for the push Dave