<?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 Not receiving AIM customer receipt emails in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-receiving-AIM-customer-receipt-emails/m-p/16974#M9529</link>
    <description>&lt;P&gt;I am creating an ﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿AuthorizationRequest object where I am attempting to set the Email and EmailCustomer properties.&amp;nbsp; However, whenever I set one or the other, they both end up with the same value.&amp;nbsp; So depending on the order, both properties will either have an email address or both will have a value of "True".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my question is how do I set up transactions so the customer can receive emails?&amp;nbsp; Is there some other property/method I need to be using?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EXAMPLE:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AuthorizationRequest request = new AuthorizationRequest(XXXXXXXXXXXXXXXX, MMYY, Y.YY, "ZZZ");&lt;BR /&gt;request.Email = "&lt;A target="_blank" href="mailto:test@test.com"&gt;test@test.com&lt;/A&gt;";&lt;BR /&gt;request.EmailCustomer = "True";&lt;BR /&gt;Gateway gate = new Gateway("aaaaaaaa", "bbbbbbbbbbbbbbbb");&lt;BR /&gt;GatewayResponse gateResponse = (GatewayResponse)gate.Send(request);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Sep 2011 21:16:37 GMT</pubDate>
    <dc:creator>mtipom</dc:creator>
    <dc:date>2011-09-09T21:16:37Z</dc:date>
    <item>
      <title>Not receiving AIM customer receipt emails</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-receiving-AIM-customer-receipt-emails/m-p/16974#M9529</link>
      <description>&lt;P&gt;I am creating an ﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿AuthorizationRequest object where I am attempting to set the Email and EmailCustomer properties.&amp;nbsp; However, whenever I set one or the other, they both end up with the same value.&amp;nbsp; So depending on the order, both properties will either have an email address or both will have a value of "True".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So my question is how do I set up transactions so the customer can receive emails?&amp;nbsp; Is there some other property/method I need to be using?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EXAMPLE:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AuthorizationRequest request = new AuthorizationRequest(XXXXXXXXXXXXXXXX, MMYY, Y.YY, "ZZZ");&lt;BR /&gt;request.Email = "&lt;A target="_blank" href="mailto:test@test.com"&gt;test@test.com&lt;/A&gt;";&lt;BR /&gt;request.EmailCustomer = "True";&lt;BR /&gt;Gateway gate = new Gateway("aaaaaaaa", "bbbbbbbbbbbbbbbb");&lt;BR /&gt;GatewayResponse gateResponse = (GatewayResponse)gate.Send(request);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2011 21:16:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-receiving-AIM-customer-receipt-emails/m-p/16974#M9529</guid>
      <dc:creator>mtipom</dc:creator>
      <dc:date>2011-09-09T21:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Not receiving AIM customer receipt emails</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-receiving-AIM-customer-receipt-emails/m-p/17068#M9574</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AuthorizationRequest request = new AuthorizationRequest(XXXXXXXXXXXXXXXX, MMYY, Y.YY, "ZZZ");&lt;BR /&gt;request.Email = "&lt;A target="_blank" href="mailto:sender@SendersDomain.com" rel="nofollow"&gt;sender@SendersDomain.com&lt;/A&gt;";&lt;BR /&gt;request.EmailCustomer = "&lt;A target="_blank" href="mailto:recipient@RecipientsDomain.com"&gt;recipient@RecipientsDomain.com&lt;/A&gt;";&lt;BR /&gt;Gateway gate = new Gateway("aaaaaaaa", "bbbbbbbbbbbbbbbb");&lt;BR /&gt;GatewayResponse gateResponse = (GatewayResponse)gate.Send(request);&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2011 06:32:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-receiving-AIM-customer-receipt-emails/m-p/17068#M9574</guid>
      <dc:creator>imw</dc:creator>
      <dc:date>2011-09-13T06:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Not receiving AIM customer receipt emails</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-receiving-AIM-customer-receipt-emails/m-p/17094#M9587</link>
      <description>&lt;P&gt;Actually mptipom's code is theoretically correct.&amp;nbsp; Unfortunately, there is a bug in the SDK that just came to my attention yesterday that is preventing it from working.&amp;nbsp; With the current release of the .Net SDK, your attempt to set the "emailCustomer" field is actually mapped to setting the email field again.&amp;nbsp; The workaround is to make sure that you have set the default action in your account to always send a receipt if the email address is included, then simply do not set the emailCustomer field in your code. I have submitted this bug to our SDK developer to get it resolved in a future update.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Imw's example code would actually avoid the issue, but not for the right reason.&amp;nbsp; The value set with request.EmailCustomer would override what was just put in with request.Email.&amp;nbsp; The Sender email address would simply be overwritten and would never reach Authorize.Net.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Sep 2011 22:06:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Not-receiving-AIM-customer-receipt-emails/m-p/17094#M9587</guid>
      <dc:creator>Trevor</dc:creator>
      <dc:date>2011-09-13T22:06:42Z</dc:date>
    </item>
  </channel>
</rss>

