I have created a simple contact form that just emails the results via the workflow - I have an upload as one of the fields, and when the email comes through the attached file shows like so
It is not possible with the built-in email workflow as the email content is very static so you would have to do your own workflow.to format the items in a specific way.
Attach File To Email Form
I have created a simple contact form that just emails the results via the workflow - I have an upload as one of the fields, and when the email comes through the attached file shows like so
Is there anyway to auto hyperlink the file to make it easier for the user to just click and download the file?
It is not possible with the built-in email workflow as the email content is very static so you would have to do your own workflow.to format the items in a specific way.
If you use this method to generate the email it is possible as you can format the link in the XSLT:
http://our.umbraco.org/forum/umbraco-pro/contour/6201-Sending-custom-emails-with-contour---howto
e.g.
<xsl:when test="contains(.//value,'/umbraco/plugins/umbracoContour/files')">
<td>
<a href="{concat('http://',umbraco.library:RequestServerVariables('HTTP_HOST'),.//value)}">
<xsl:value-of select="concat('http://',umbraco.library:RequestServerVariables('HTTP_HOST'),.//value)"/>
</a>
</td>
</xsl:when>
is working on a reply...