<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Automated email responses to successful orders in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/75277#M46918</link>
    <description>&lt;P&gt;Hello Everyone!!&lt;BR /&gt;&lt;SPAN&gt;I am facing a payment &lt;A href="https://ihomedental.com/" target="_self"&gt;problem&lt;/A&gt; on my website. My customers are complaining about the payment procedure. I want to add the easiest and secure payment method on my website. So kindly guide me for this.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Mar 2021 07:18:16 GMT</pubDate>
    <dc:creator>ekpeeraphael</dc:creator>
    <dc:date>2021-03-09T07:18:16Z</dc:date>
    <item>
      <title>Automated email responses to successful orders</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/33837#M18337</link>
      <description>&lt;P&gt;I am new to Practice Pay Solutions. My wife's business is primarily as a management consultant for dental practices. We will be selling products from her website. Many of these will be in electronic form, for instance: Dental Practice Personnel Manuals, E-books concerning Dental Management, etc).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to configure an order form so that when a customer completes checkout and orders a product, instead of us having to manually email the product to the buyer, the product would instead be automatically emailed to the buyer?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have excellent knowledge/experience with html/css (I am her web developer as well as my own separate business) and have a rudimentary knowledge of javascript/jquery and php and am just beginning to delve into mysql ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this sort of application is too complex for someone of my experience to delve into please advise .. if it's doable and not out of the scope of my experience I would love to see some examples/advice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for any help!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Todd&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2013 19:07:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/33837#M18337</guid>
      <dc:creator>ptday64</dc:creator>
      <dc:date>2013-04-05T19:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Automated email responses to successful orders</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/33914#M18413</link>
      <description>&lt;P&gt;&lt;SPAN style="line-height: 16px;"&gt;Hello &lt;/SPAN&gt;ptday64&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;It doesn't look like anyone has responded yet, but someone still may have feedback on what you're looking for.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd recommend subscribing to this topic so that you'll be alerted via email if anyone else from the community is able to respond with any comments. To subscribe, click &lt;STRONG&gt;Topic Options&lt;/STRONG&gt; at the top of this thread and then select &lt;STRONG&gt;Subscribe&lt;/STRONG&gt;. You'll then receive an email once anyone replies to your post.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2013 01:08:29 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/33914#M18413</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2013-04-12T01:08:29Z</dc:date>
    </item>
    <item>
      <title>Re: Automated email responses to successful orders</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/33928#M18426</link>
      <description>&lt;P&gt;I am assuming you are using Authorize.net with Practice Pay Solutions, which is a merchant provider. To answer your question, you can definitely use relay response with SIM or DPM. Something like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;?php
require_once($_SERVER['DOCUMENT_ROOT'].'/library/anet_php_sdk/AuthorizeNet.php');

$redirect_url = "&lt;A target="_blank" href="http://YOUR_DOMAIN.com/receipt_page.php"&gt;http://YOUR_DOMAIN.com/receipt_page.php&lt;/A&gt;";
    // Where the user will end up.
$api_login_id = 'YOUR_API_LOGIN_ID';
$md5_setting = '';
    // Your MD5 Setting

$response = new AuthorizeNetSIM($api_login_id, $md5_setting);

if ($response-&amp;gt;isAuthorizeNet()) {
    if ($response-&amp;gt;approved) {

        /*
           Update your order record

           Reference $response-&amp;gt;invoice_num, which is the
           record ID in your system that you hopefully
           remembered to pass.

           Send email with product to the email in the order
           record.
        */

        $redirect_url .= '?response_code=1&amp;amp;transaction_id=' . $response-&amp;gt;transaction_id;
    }
    else {
        $redirect_url .= '?response_code='.$response-&amp;gt;response_code .
'&amp;amp;response_reason_text=' . $response-&amp;gt;response_reason_text;
    }
    echo AuthorizeNetDPM::getRelayResponseSnippet($redirect_url);
}
else echo 'Error. Check your MD5 Setting.';
?&amp;gt;&lt;/PRE&gt;&lt;P&gt;EDIT: This is from the PHP code section in the DPM documentation.&lt;BR /&gt;&lt;A target="_blank" href="http://www.authorize.net/support/DirectPost_guide.pdf"&gt;http://www.authorize.net/support/DirectPost_guide.pdf&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Apr 2013 07:08:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/33928#M18426</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2013-04-13T07:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Automated email responses to successful orders</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/33963#M18460</link>
      <description>&lt;P&gt;Thanks so much guys!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am going back and forth between using a 3rd party shopping cart or coding this thing myself. My PHP experience is just slightly above a novice. Very basic, but I am a very quick learner.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm going to delve further into your idea, TJPride.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2013 22:02:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/33963#M18460</guid>
      <dc:creator>ptday64</dc:creator>
      <dc:date>2013-04-16T22:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Automated email responses to successful orders</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/75277#M46918</link>
      <description>&lt;P&gt;Hello Everyone!!&lt;BR /&gt;&lt;SPAN&gt;I am facing a payment &lt;A href="https://ihomedental.com/" target="_self"&gt;problem&lt;/A&gt; on my website. My customers are complaining about the payment procedure. I want to add the easiest and secure payment method on my website. So kindly guide me for this.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2021 07:18:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Automated-email-responses-to-successful-orders/m-p/75277#M46918</guid>
      <dc:creator>ekpeeraphael</dc:creator>
      <dc:date>2021-03-09T07:18:16Z</dc:date>
    </item>
  </channel>
</rss>

