XSLT filePath with document as variable -


i try use variable in filepath, isn't working:

bodypart filepath="c:\\fileoutemail\\($vpdocnr).xml" content-type="" content-id="" content-disposition="" multipart-type="" 

i tried whole path in variable without results:

bodypart filepath='$bestand'  content-type="" content-id="" content-disposition="" multipart-type=""  

is possible, right syntax?

i guessing here, supposing xslt stylesheet contains:

<xsl:variable name="vpdocnr" select="'abc123'"/> <bodypart filepath="c:\fileoutemail\{$vpdocnr}.xml"/> 

then result of part be:

<bodypart filepath="c:\fileoutemail\abc123.xml"/> 

Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -