<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: Sending email field to Stripe</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Sending email field to Stripe</description>
<language>en</language>
<pubDate>Sun, 03 May 2026 18:48:10 +0000</pubDate>

<item>
<title>AMurray on "Sending email field to Stripe"</title>
<link>https://www.machform.com/forums/topic/sending-email-field-to-stripe-and-other-stripe-tweaks#post-24406</link>
<pubDate>Sat, 21 Nov 2015 04:26:33 +0000</pubDate>
<dc:creator>AMurray</dc:creator>
<guid isPermaLink="false">24406@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;The file is there (at least in V 4.6).&#60;/p&#62;
&#60;p&#62;It might be called something else in prior versions?  If you can sort the file list into alphabetical order, look for any file starting &#34;payment_submit_&#34; and you should find the one for Stripe.&#60;/p&#62;
&#60;p&#62;Otherwise post back with the ones you do see listed, or post a screenshot of the file listing.&#60;/p&#62;
&#60;p&#62;If need be, go back to the downloaded zip file, or get the latest one from your Members Area (for V 4.6).&#60;br /&#62;
&#60;a href=&#34;http://www.appnitro.com/members&#34; rel=&#34;nofollow&#34;&#62;http://www.appnitro.com/members&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>budapestguide on "Sending email field to Stripe"</title>
<link>https://www.machform.com/forums/topic/sending-email-field-to-stripe-and-other-stripe-tweaks#post-24394</link>
<pubDate>Thu, 19 Nov 2015 18:52:23 +0000</pubDate>
<dc:creator>budapestguide</dc:creator>
<guid isPermaLink="false">24394@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I would also need this feature in stripe to be able to send automated receipts and refund notifications with the machform + stripe combo.&#60;/p&#62;
&#60;p&#62;I was trying to follow Octavio's advice and add the code, but I cannot even locate this file payment_submit_stripe.php&#60;br /&#62;
I went through the machform stripe folder, also found a payment stripe js in the js folder, but could not locate the payment_submit_stripe.php file. &#60;/p&#62;
&#60;p&#62;Lame, I know, I am not a programmer, just trying to learn and improve.&#60;br /&#62;
Can anyone help please?&#60;/p&#62;
&#60;p&#62;Thank you,&#60;br /&#62;
Anna
&#60;/p&#62;</description>
</item>
<item>
<title>octaviocorral on "Sending email field to Stripe"</title>
<link>https://www.machform.com/forums/topic/sending-email-field-to-stripe-and-other-stripe-tweaks#post-23812</link>
<pubDate>Tue, 11 Aug 2015 06:04:14 +0000</pubDate>
<dc:creator>octaviocorral</dc:creator>
<guid isPermaLink="false">23812@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Ended up modifying the code in case anyone is interested in the solution. Now emails are sent to stripe for recurring billing&#60;/p&#62;
&#60;p&#62;within payment_submit_stripe.php &#60;/p&#62;
&#60;p&#62;line 20 add:&#60;br /&#62;
&#60;code&#62;$email1 = null;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;on line 25 add the following. Be sure to replace your form ID and element # with your own:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//grab the email if it exists. custom code
	if($form_id == 13422){

		$dbh = mf_connect_db();

		//get form properties data
		$query 	= &#38;quot;select element_7 from &#38;quot;.MF_TABLE_PREFIX.&#38;quot;form_&#38;quot;.$form_id.&#38;quot; WHERE id = &#38;quot;.$payment_record_id;

		$params = array($form_id);

		$sth = mf_do_query($query,$params,$dbh);
		//$row = mf_do_fetch_result($sth);

		while($row = mf_do_fetch_result($sth)){
			$email1 = $row[&#38;#39;element_7&#38;#39;];
		}

	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;On line 213. modify to send the email to the customer object&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;try {
			$customer_obj = Stripe_Customer::create(array(
								&#38;quot;card&#38;quot; =&#38;gt; $token,
						  		&#38;quot;description&#38;quot; =&#38;gt; $customer_desc,
						  		&#38;quot;email&#38;quot; =&#38;gt; $email1
                                )
							);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>yuniar on "Sending email field to Stripe"</title>
<link>https://www.machform.com/forums/topic/sending-email-field-to-stripe-and-other-stripe-tweaks#post-20933</link>
<pubDate>Mon, 05 May 2014 11:48:12 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">20933@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;At this moment MachForm only send the minimum required fields by Stripe to process the payment. You'll need to update the email address within your Stripe dashboard manually for now.&#60;/p&#62;
&#60;p&#62;Or if you don't mind with some modifications, please contact us directly and let us know the URL of your form.&#60;br /&#62;
We'll help you with the code to send the email to Stripe.&#60;/p&#62;
&#60;p&#62;We're looking forward to improve this.
&#60;/p&#62;</description>
</item>
<item>
<title>octochops on "Sending email field to Stripe"</title>
<link>https://www.machform.com/forums/topic/sending-email-field-to-stripe-and-other-stripe-tweaks#post-20893</link>
<pubDate>Wed, 30 Apr 2014 07:34:55 +0000</pubDate>
<dc:creator>octochops</dc:creator>
<guid isPermaLink="false">20893@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Upon further looking into it, it's actually extremely important that the email be passed. Especially for recurring subscriptions since Machform itself will not email a &#34;receipt&#34; every month there is a charge and Stripe will as long as there is an email on file.
&#60;/p&#62;</description>
</item>
<item>
<title>octochops on "Sending email field to Stripe"</title>
<link>https://www.machform.com/forums/topic/sending-email-field-to-stripe-and-other-stripe-tweaks#post-20887</link>
<pubDate>Wed, 30 Apr 2014 00:56:08 +0000</pubDate>
<dc:creator>octochops</dc:creator>
<guid isPermaLink="false">20887@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Is there anyway to send an email field as part of the customer object to Stripe? &#60;/p&#62;
&#60;p&#62;or is there any reason you aren't sending it?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
