<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Automate a File Send with Form Submit</title>
		<link>https://legacy.forums.gravityhelp.com/topic/automate-a-file-send-with-form-submit</link>
		<description>Gravity Support Forums Topic: Automate a File Send with Form Submit</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 05:19:41 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/automate-a-file-send-with-form-submit" rel="self" type="application/rss+xml" />

		<item>
			<title>badelman on "Automate a File Send with Form Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/automate-a-file-send-with-form-submit#post-29231</link>
			<pubDate>Wed, 06 Jul 2011 12:07:12 +0000</pubDate>
			<dc:creator>badelman</dc:creator>
			<guid isPermaLink="false">29231@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Some of this is complicated for me to understand but is all great information and I certainly appreciate all of it! I'm going to get started now. I'll let you know how it turns out!&#60;/p&#62;
&#60;p&#62;Thank you Carl,&#60;br /&#62;
Barry
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Automate a File Send with Form Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/automate-a-file-send-with-form-submit#post-29223</link>
			<pubDate>Wed, 06 Jul 2011 11:43:45 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">29223@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I don't see why not. The only issue is going to be the fact that the document is variable based on a selection.  The solution to this is going to be to use a drop down for the report selection and you'll have to use a custom notification message, you won't be able to use the {all_fields} merge tag.&#60;/p&#62;
&#60;p&#62;- Create a folder on your web server to store the report files (ex. &#60;a href=&#34;http://mydomain.com/reports)&#34; rel=&#34;nofollow&#34;&#62;http://mydomain.com/reports)&#60;/a&#62;&#60;br /&#62;
- Upload the report files there&#60;br /&#62;
- Edit your form&#60;br /&#62;
- Add a drop down field to your form&#60;br /&#62;
- Label the drop down &#34;Select A Report&#34; or whatever you want&#60;br /&#62;
- Select the &#34;Enable Values&#34; checkbox&#60;br /&#62;
- For the choices enter the report name as the Choice Label and enter the filename as the Choice Value.  For example see this screenshot: &#60;a href=&#34;http://i.imgur.com/uSWx5.png&#34; rel=&#34;nofollow&#34;&#62;http://i.imgur.com/uSWx5.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Now when you create your Notification message, you can use the form field variable for that field to display both the Name and the Filename that was selected so you can build a link by using the merge tags for that field.&#60;/p&#62;
&#60;p&#62;So in the notification message body supports HTML and form field merge tags.  So you could create a link to that file by knowing the path to it and then outputting the merge tag for that field and appending :value to the end to return the value, which would be the filename.&#60;/p&#62;
&#60;p&#62;For example:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;You can download your report &#38;lt;a href=&#38;quot;http://mydomain.com/reports/{My Field:1:value}&#38;quot;&#38;gt;here&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That is just an example of getting the value of a field rather than the label.  But you can use that to get the filename which is stored in the value of the drop down so that you can output it in the notification message body.&#60;/p&#62;
&#60;p&#62;If you want to store the files securely you could even use something like PluginBuddy's S3 URL's shortcode plugin and implement Amazon S3 expiring links so that the link to the file expires and the file is stored on Amazon S3.  The notification message supports shortcodes so the merge tags combined with the shortcode capabilities gives you a lot of flexibility.&#60;/p&#62;
&#60;p&#62;The PluginBuddy S3 URL's plugin can be found here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/pluginbuddy-s3-urls/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/pluginbuddy-s3-urls/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;As for tracking their info via notifications, i'm not sure what you mean.  You'd track their info by the form field data that was submitted.  The notification itself is just an email.&#60;/p&#62;
&#60;p&#62;Gravity Forms can do all sorts of things, you just need to be creative in how you implement the available features.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>badelman on "Automate a File Send with Form Submit"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/automate-a-file-send-with-form-submit#post-29216</link>
			<pubDate>Wed, 06 Jul 2011 11:24:29 +0000</pubDate>
			<dc:creator>badelman</dc:creator>
			<guid isPermaLink="false">29216@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello, I would like to have people enter there appropriate information into my gravity form to get a report. Is there a way of automating this process? &#60;/p&#62;
&#60;p&#62;I see it working like this:&#60;br /&#62;
1. Person enters required info into the form&#60;br /&#62;
2. Person hits submit&#60;br /&#62;
3. They get a nice message saying: &#34;Thanks!&#34;&#60;br /&#62;
4. They receive the document or report in their email.. (the one which they entered into the form)&#60;br /&#62;
5. We can track their info via notifications&#60;/p&#62;
&#60;p&#62;What do you think?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
