I am trying to open email message by providing URL as below
mailUrl = "/Inbox/test%20mail%20%2B%20to%20verify%20%2B%20symbol.EML"
oXMLHttp.open("PROPFIND", mailUrl, false, strUser, strPass);
%20 - space
%2B - +
It returns file not found
error, but file is there. The issue I am facing is, whenever +
symbol used in file name, getting file not found error.
Because that naming convention are illegal. Avoid using non-alphanumeric characters in file names. The use of these characters can cause problems and issues, plus, file name can't be longer than 128 characters.
Read this link below, they are helpful to understand and list the symbol that need to be avoid in file name:
Maybe you can try to sanitize input (file name) before passing to
oXMLhttp.open()
function such like this :