copyright and version fixes
[civicrm-core.git] / CRM / Contribute / Form / AdditionalPayment.php
index 2ed214ed9cf48a9cdf3be5a689d276373295fca4..1c7fc5cfa5e436265a88fc2fd53b4dd640385dfe 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.4                                                |
+ | CiviCRM version 4.5                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -28,7 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * $Id$
  *
  */
@@ -72,10 +72,34 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
 
   protected $fromEmailId = NULL;
 
+  protected $_fromEmails = NULL;
+
+  protected $_view = NULL;
+
+  public $_action = NULL;
+
   public function preProcess() {
     $this->_id = CRM_Utils_Request::retrieve('id', 'Positive', $this, TRUE);
     $this->_contactId = CRM_Utils_Request::retrieve('cid', 'Positive', $this, TRUE);
     $this->_component = CRM_Utils_Request::retrieve('component', 'String', $this, TRUE);
+    $this->_view = CRM_Utils_Request::retrieve('view', 'String', $this, FALSE);
+    $this->_action = CRM_Utils_Request::retrieve('action', 'String', $this, FALSE);
+    $this->assign('component', $this->_component);
+    $this->assign('id', $this->_id);
+
+    if ($this->_view == 'transaction' && ($this->_action & CRM_Core_Action::BROWSE)) {
+      $paymentInfo = CRM_Contribute_BAO_Contribution::getPaymentInfo($this->_id, $this->_component, TRUE);
+      $transactionRows = $paymentInfo['transaction'];
+      $title = ts('View Payment');
+      if ($this->_component == 'event') {
+        $info = CRM_Event_BAO_Participant::participantDetails($this->_id);
+        $title .= " - {$info['title']}";
+      }
+      CRM_Utils_System::setTitle($title);
+      $this->assign('transaction', TRUE);
+      $this->assign('rows', $transactionRows);
+      return;
+    }
     $this->_fromEmails = CRM_Core_BAO_Email::getFromEmail();
     $this->_formType = CRM_Utils_Array::value('formType', $_GET);
 
@@ -84,8 +108,14 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       $enitityType = 'participant';
       $this->_contributionId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_ParticipantPayment', $this->_id, 'contribution_id', 'participant_id');
     }
+    $eventId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'event_id', 'id');
+    $this->_fromEmails = CRM_Event_BAO_Event::getFromEmailIds($eventId);
 
     $paymentInfo = CRM_Core_BAO_FinancialTrxn::getPartialPaymentWithType($this->_id, $enitityType);
+    $paymentDetails = CRM_Contribute_BAO_Contribution::getPaymentInfo($this->_id, $this->_component, FALSE, TRUE);
+
+    $this->_amtPaid = $paymentDetails['paid'];
+    $this->_amtTotal = $paymentDetails['total'];
 
     if (!empty($paymentInfo['refund_due'])) {
       $paymentAmt = $this->_refund = $paymentInfo['refund_due'];
@@ -99,22 +129,26 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       CRM_Core_Error::fatal(ts('No payment information found for this record'));
     }
 
-    list($this->_contributorDisplayName, $this->_contributorEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactId);
     //set the payment mode - _mode property is defined in parent class
     $this->_mode = CRM_Utils_Request::retrieve('mode', 'String', $this);
 
-    $this->assignProcessors();
+    if (!empty($this->_mode) && $this->_paymentType == 'refund') {
+      CRM_Core_Error::fatal(ts('Credit card payment is not for Refund payments use'));
+    }
+
+    list($this->_contributorDisplayName, $this->_contributorEmail) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactId);
 
-    // also check for billing information
-    // get the billing location type
-    $this->assignBillingType();
+    if (!$this->_refund) {
+      $this->assignProcessors();
+      // also check for billing information
+      // get the billing location type
+      $this->assignBillingType();
+    }
 
     $this->assign('contributionMode', $this->_mode);
     $this->assign('contactId', $this->_contactId);
-    $this->assign('component', $this->_component);
-    $this->assign('id', $this->_id);
     $this->assign('paymentType', $this->_paymentType);
-    $this->assign('paymentAmt', $paymentAmt);
+    $this->assign('paymentAmt', abs($paymentAmt));
 
     $this->_paymentProcessor = array('billing_mode' => 1);
 
@@ -125,16 +159,20 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
   }
 
   public function setDefaultValues() {
+    if ($this->_view == 'transaction' && ($this->_action & CRM_Core_Action::BROWSE)) {
+      return;
+    }
+    $defaults = array( );
     if ($this->_mode) {
       $defaults = $this->_values;
 
       $config = CRM_Core_Config::singleton();
       // set default country from config if no country set
-      if (!CRM_Utils_Array::value("billing_country_id-{$this->_bltID}", $defaults)) {
+      if (empty($defaults["billing_country_id-{$this->_bltID}"])) {
         $defaults["billing_country_id-{$this->_bltID}"] = $config->defaultContactCountry;
       }
 
-      if (!CRM_Utils_Array::value("billing_state_province_id-{$this->_bltID}", $defaults)) {
+      if (empty($defaults["billing_state_province_id-{$this->_bltID}"])) {
         $defaults["billing_state_province_id-{$this->_bltID}"] = $config->defaultContactStateProvince;
       }
 
@@ -145,11 +183,36 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       CRM_Core_BAO_Address::fixAllStateSelects($this, $defaults);
     }
 
+    if (empty($defaults['trxn_date']) && empty($defaults['trxn_date_time'])) {
+      list($defaults['trxn_date'],
+        $defaults['trxn_date_time']
+      ) = CRM_Utils_Date::setDateDefaults(
+        CRM_Utils_Array::value('register_date', $defaults), 'activityDateTime'
+      );
+    }
+
+    if ($this->_refund) {
+      $defaults['total_amount'] = abs($this->_refund);
+    }
+
     // Set $newCredit variable in template to control whether link to credit card mode is included
     CRM_Core_Payment::allowBackofficeCreditCard($this);
+    return $defaults;
   }
 
   public function buildQuickForm() {
+    if ($this->_view == 'transaction' && ($this->_action & CRM_Core_Action::BROWSE)) {
+      $this->addButtons(array(
+          array(
+            'type' => 'cancel',
+            'name' => ts('Done'),
+            'spacing' => '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
+            'isDefault' => TRUE,
+          ),
+        )
+      );
+      return;
+    }
     $ccPane = NULL;
     if ($this->_mode) {
       if (CRM_Utils_Array::value('payment_type', $this->_processors) & CRM_Core_Payment::PAYMENT_TYPE_DIRECT_DEBIT
@@ -163,8 +226,7 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       $showAdditionalInfo = FALSE;
 
       foreach ($ccPane as $name => $type) {
-        if ($this->_formType == $type ||
-          CRM_Utils_Array::value("hidden_{$type}", $_POST) ||
+        if ($this->_formType == $type || !empty($_POST["hidden_{$type}"]) ||
           CRM_Utils_Array::value("hidden_{$type}", $defaults)
         ) {
           $showAdditionalInfo = TRUE;
@@ -210,11 +272,6 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
     $attributes = CRM_Core_DAO::getAttribute('CRM_Financial_DAO_FinancialTrxn');
 
     $this->add('select', 'payment_processor_id', ts('Payment Processor'), $this->_processors, NULL);
-    $this->add('select', 'financial_type_id',
-      ts('Financial Type'),
-      array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::financialType(),
-      TRUE
-    );
     $label = ($this->_refund) ? 'Refund Amount' : 'Payment Amount';
     $this->addMoney('total_amount',
       ts('%1', array(1 => $label)),
@@ -223,13 +280,11 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       TRUE, 'currency', NULL
     );
 
-    if (!$this->_mode) {
-      $this->add('select', 'payment_instrument_id',
-        ts('Paid By'),
-        array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::paymentInstrument(),
-        TRUE, array('onChange' => "return showHideByValue('payment_instrument_id','4','checkNumber','table-row','select',false);")
-      );
-    }
+    $this->add('select', 'payment_instrument_id',
+      ts('Paid By'),
+      array('' => ts('- select -')) + CRM_Contribute_PseudoConstant::paymentInstrument(),
+      TRUE, array('onChange' => "return showHideByValue('payment_instrument_id','4','checkNumber','table-row','select',false);")
+    );
 
     $this->add('text', 'check_number', ts('Check Number'), $attributes['financial_trxn_check_number']);
     $trxnId = $this->add('text', 'trxn_id', ts('Transaction ID'), $attributes['trxn_id']);
@@ -237,10 +292,13 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
     //add receipt for offline contribution
     $this->addElement('checkbox', 'is_email_receipt', ts('Send Receipt?'));
 
-    $this->add('select', 'from_email_address', ts('Receipt From'), $this->_fromEmails);
+    $this->add('select', 'from_email_address', ts('Receipt From'), $this->_fromEmails['from_email_id']);
+
+    $this->add('textarea', 'receipt_text', ts('Confirmation Message'));
 
     // add various dates
-    $this->addDateTime('trxn_date', ts('Received'), FALSE, array('formatType' => 'activityDateTime'));
+    $dateLabel = ($this->_refund) ? 'Refund Date' : 'Received Date';
+    $this->addDateTime('trxn_date', ts('%1', array(1 => $dateLabel)), FALSE, array('formatType' => 'activityDateTime'));
 
     if ($this->_contactId && $this->_id) {
       if ($this->_component == 'event') {
@@ -298,12 +356,12 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
     if ($self->_paymentType == 'owed' && $fields['total_amount'] > $self->_owed) {
       $errors['total_amount'] = ts('Payment amount cannot be greater than owed amount');
     }
-    if ($self->_paymentType == 'refund' && $fields['total_amount'] != $self->_refund) {
-      $errors['total_amount'] = ts('Refund amount should not differ');
+    if ($self->_paymentType == 'refund' && $fields['total_amount'] != abs($self->_refund)) {
+      $errors['total_amount'] = ts('Refund amount must equal refund due amount.');
     }
     $netAmt = $fields['total_amount'] - $fields['fee_amount'];
     if (!empty($fields['net_amount']) && $netAmt != $fields['net_amount']) {
-      $errors['net_amount'] = ts('Net amount should be difference of payment amount and fee amount');
+      $errors['net_amount'] = ts('Net amount should be equal to the difference between payment amount and fee amount.');
     }
     return $errors;
   }
@@ -314,23 +372,38 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       $participantId = $this->_id;
     }
     $submittedValues = $this->controller->exportValues($this->_name);
+    $submittedValues['confirm_email_text'] = CRM_Utils_Array::value('receipt_text', $submittedValues);
 
+    $submittedValues['trxn_date'] = CRM_Utils_Date::processDate($submittedValues['trxn_date'], $submittedValues['trxn_date_time']);
     if ($this->_mode) {
       // process credit card
+      $this->assign('contributeMode', 'direct');
       $this->processCreditCard($submittedValues);
     }
     else {
-      $result = CRM_Contribute_BAO_Contribution::recordAdditionPayment($this->_contributionId, $submittedValues, $this->_paymentType, $participantId);
+      $result = CRM_Contribute_BAO_Contribution::recordAdditionalPayment($this->_contributionId, $submittedValues, $this->_paymentType, $participantId);
 
       // email sending
-      if (!empty($result) && CRM_Utils_Array::value('is_email_receipt', $submittedValues)) {
+      if (!empty($result) && !empty($submittedValues['is_email_receipt'])) {
         $submittedValues['contact_id'] = $this->_contactId;
         $submittedValues['contribution_id'] = $this->_contributionId;
 
         // to get 'from email id' for send receipt
         $this->fromEmailId = $submittedValues['from_email_address'];
-        $sendReceipt = self::emailReceipt($this, $submittedValues);
+        $sendReceipt = $this->emailReceipt($submittedValues);
       }
+
+      $statusMsg = ts('The payment record has been processed.');
+      if (!empty($submittedValues['is_email_receipt']) && $sendReceipt) {
+        $statusMsg .= ' ' . ts('A receipt has been emailed to the contributor.');
+      }
+
+      CRM_Core_Session::setStatus($statusMsg, ts('Saved'), 'success');
+
+      $session = CRM_Core_Session::singleton();
+      $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view',
+          "reset=1&cid={$this->_contactId}&selectedChild=participant"
+        ));
     }
   }
 
@@ -364,7 +437,7 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
     $fields = array();
 
     // we need to retrieve email address
-    if ($this->_context == 'standalone' && CRM_Utils_Array::value('is_email_receipt', $submittedValues)) {
+    if ($this->_context == 'standalone' && !empty($submittedValues['is_email_receipt'])) {
       list($this->userDisplayName,
         $this->userEmail
       ) = CRM_Contact_BAO_Contact_Location::getEmailDetails($this->_contactId);
@@ -399,7 +472,7 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       }
     }
 
-    if (CRM_Utils_Array::value('source', $params)) {
+    if (!empty($params['source'])) {
       unset($params['source']);
     }
     $contactID = CRM_Contact_BAO_Contact::createProfileContact($params, $fields,
@@ -424,8 +497,8 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       $config->defaultCurrency
     );
     $this->_params['payment_action'] = 'Sale';
-    if (CRM_Utils_Array::value('trxn_date', $this->_params)) {
-      $this->_params['receive_date'] = CRM_Utils_Date::processDate($this->_params['trxn_date'], $this->_params['receive_date_time']);
+    if (!empty($this->_params['trxn_date'])) {
+      $this->_params['receive_date'] = CRM_Utils_Date::processDate($this->_params['trxn_date'], $this->_params['trxn_date_time']);
     }
 
     if (empty($this->_params['invoice_id'])) {
@@ -435,6 +508,36 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       $this->_params['invoiceID'] = $this->_params['invoice_id'];
     }
 
+    // billing name and Address
+    $name = CRM_Utils_Array::value('billing_first_name', $params);
+    if (!empty($params['billing_middle_name'])) {
+      $name .= " {$params['billing_middle_name']}";
+    }
+    $name .= ' ' . CRM_Utils_Array::value('billing_last_name', $params);
+    $name = trim($name);
+    $this->assign('billingName', $name);
+
+    //assign the address formatted up for display
+    $addressParts = array(
+      "street_address" => "billing_street_address-{$this->_bltID}",
+      "city" => "billing_city-{$this->_bltID}",
+      "postal_code" => "billing_postal_code-{$this->_bltID}",
+      "state_province" => "state_province-{$this->_bltID}",
+      "country" => "country-{$this->_bltID}",
+    );
+    $addressFields = array();
+    foreach ($addressParts as $name => $field) {
+      $addressFields[$name] = CRM_Utils_Array::value($field, $params);
+    }
+    $this->assign('address', CRM_Utils_Address::format($addressFields));
+    $date = CRM_Utils_Date::format($params['credit_card_exp_date']);
+    $date = CRM_Utils_Date::mysqlToIso($date);
+    $this->assign('credit_card_type', CRM_Utils_Array::value('credit_card_type', $params));
+    $this->assign('credit_card_exp_date', $date);
+    $this->assign('credit_card_number',
+      CRM_Utils_System::mungeCreditCard($params['credit_card_number'])
+    );
+
     //Add common data to formatted params
     CRM_Contribute_Form_AdditionalInfo::postProcessCommon($params, $this->_params, $this);
     // at this point we've created a contact and stored its address etc
@@ -444,17 +547,11 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
     $paymentParams['contactID'] = $this->_contactId;
     CRM_Core_Payment_Form::mapParams($this->_bltID, $this->_params, $paymentParams, TRUE);
 
-    $contributionType = new CRM_Financial_DAO_FinancialType();
-    $contributionType->id = $params['financial_type_id'];
-    if (!$contributionType->find(TRUE)) {
-      CRM_Core_Error::fatal('Could not find a system table');
-    }
-
     // add some financial type details to the params list
     // if folks need to use it
     $paymentParams['contributionType_name'] = $this->_params['contributionType_name'] = $contributionType->name;
     $paymentParams['contributionPageID'] = NULL;
-    if (CRM_Utils_Array::value('is_email_receipt', $this->_params)) {
+    if (!empty($this->_params['is_email_receipt'])) {
       $paymentParams['email'] = $this->_contributorEmail;
       $paymentParams['is_email_receipt'] = 1;
     }
@@ -462,10 +559,10 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       $paymentParams['is_email_receipt'] = 0;
       $this->_params['is_email_receipt'] = 0;
     }
-    if (CRM_Utils_Array::value('receive_date', $this->_params)) {
+    if (!empty($this->_params['receive_date'])) {
       $paymentParams['receive_date'] = $this->_params['receive_date'];
     }
-    if (CRM_Utils_Array::value('receive_date', $this->_params)) {
+    if (!empty($this->_params['receive_date'])) {
       $paymentParams['receive_date'] = $this->_params['receive_date'];
     }
 
@@ -491,11 +588,11 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
       $this->_params = array_merge($this->_params, $result);
     }
 
-    $this->_params['receive_date'] = $now;
+    if (empty($this->_params['receive_date'])) {
+      $this->_params['receive_date'] = $now;
+    }
 
     $this->set('params', $this->_params);
-    $this->assign('trxn_id', $result['trxn_id']);
-    $this->assign('receive_date', $this->_params['receive_date']);
 
     // set source if not set
     if (empty($this->_params['source'])) {
@@ -507,24 +604,107 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract
     }
 
     // process the additional payment
-    $trxnRecord = CRM_Contribute_BAO_Contribution::recordAdditionPayment($this->_contributionId, $submittedValues, $this->_paymentType, $participantId);
+    $participantId = NULL;
+    if ($this->_component == 'event') {
+      $participantId = $this->_id;
+    }
+    $trxnRecord = CRM_Contribute_BAO_Contribution::recordAdditionalPayment($this->_contributionId, $submittedValues, $this->_paymentType, $participantId);
 
-    if ($trxnRecord->id &&
-      CRM_Utils_Array::value('is_email_receipt', $this->_params)
-    ) {
-      $sendReceipt = self::emailReceipt($this, $this->_params);
+    if ($trxnRecord->id && !empty($this->_params['is_email_receipt'])) {
+      $sendReceipt = $this->emailReceipt($this->_params);
     }
 
     if ($trxnRecord->id) {
       $statusMsg = ts('The payment record has been processed.');
-      if (CRM_Utils_Array::value('is_email_receipt', $this->_params) && $sendReceipt) {
+      if (!empty($this->_params['is_email_receipt']) && $sendReceipt) {
         $statusMsg .= ' ' . ts('A receipt has been emailed to the contributor.');
       }
+
       CRM_Core_Session::setStatus($statusMsg, ts('Complete'), 'success');
+      $session->replaceUserContext(CRM_Utils_System::url('civicrm/contact/view',
+          "reset=1&cid={$this->_contactId}&selectedChild=participant"
+        ));
     }
   }
 
-  static function emailReceipt(&$form, &$params) {
+  function emailReceipt(&$params) {
     // email receipt sending
+    // send message template
+    if ($this->_component == 'event') {
+      $eventId = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Participant', $this->_id, 'event_id', 'id');
+
+      $returnProperties = array('fee_label', 'start_date', 'end_date', 'is_show_location', 'title');
+      CRM_Core_DAO::commonRetrieveAll('CRM_Event_DAO_Event', 'id', $eventId, $events, $returnProperties);
+      $event = $events[$eventId];
+      unset($event['start_date']);
+      unset($event['end_date']);
+
+      $this->assign('event', $event);
+      $this->assign('isShowLocation', $event['is_show_location']);
+      if (CRM_Utils_Array::value('is_show_location', $event) == 1) {
+        $locationParams = array(
+          'entity_id' => $eventId,
+          'entity_table' => 'civicrm_event',
+        );
+        $location = CRM_Core_BAO_Location::getValues($locationParams, TRUE);
+        $this->assign('location', $location);
+      }
+    }
+
+    // assign payment info here
+    $paymentConfig['confirm_email_text'] = CRM_Utils_Array::value('confirm_email_text', $params);
+    $this->assign('paymentConfig', $paymentConfig);
+    $isRefund = ($this->_paymentType == 'refund') ? TRUE : FALSE;
+    $this->assign('isRefund', $isRefund);
+    if ($isRefund) {
+      $this->assign('totalPaid', $this->_amtPaid);
+      $this->assign('totalAmount', $this->_amtTotal);
+      $this->assign('refundAmount', $params['total_amount']);
+    }
+    else {
+      $balance = $this->_amtTotal - ($this->_amtPaid + $params['total_amount']);
+      $paymentsComplete = ($balance == 0) ? 1 : 0;
+      $this->assign('amountOwed', $balance);
+      $this->assign('totalAmount', $this->_amtTotal);
+      $this->assign('paymentAmount', $params['total_amount']);
+      $this->assign('paymentsComplete', $paymentsComplete);
+    }
+    $this->assign('contactDisplayName', $this->_contributorDisplayName);
+
+    // assign trxn details
+    $this->assign('trxn_id', CRM_Utils_Array::value('trxn_id', $params));
+    $this->assign('receive_date', CRM_Utils_Array::value('trxn_date', $params));
+    $paymentInstrument = CRM_Contribute_PseudoConstant::paymentInstrument();
+    if (array_key_exists('payment_instrument_id', $params)) {
+      $this->assign('paidBy',
+        CRM_Utils_Array::value($params['payment_instrument_id'],
+          $paymentInstrument
+        )
+      );
+    }
+    $this->assign('checkNumber', CRM_Utils_Array::value('check_number', $params));
+
+    $sendTemplateParams = array(
+      'groupName' => 'msg_tpl_workflow_contribution',
+      'valueName' => 'payment_or_refund_notification',
+      'contactId' => $this->_contactId,
+      'PDFFilename' => ts('notification').'.pdf',
+    );
+
+    // try to send emails only if email id is present
+    // and the do-not-email option is not checked for that contact
+    if ($this->_contributorEmail && !$this->_toDoNotEmail) {
+      if (array_key_exists($params['from_email_address'], $this->_fromEmails['from_email_id'])) {
+        $receiptFrom = $params['from_email_address'];
+      }
+
+      $sendTemplateParams['from'] = $receiptFrom;
+      $sendTemplateParams['toName'] = $this->_contributorDisplayName;
+      $sendTemplateParams['toEmail'] = $this->_contributorEmail;
+      $sendTemplateParams['cc'] = CRM_Utils_Array::value('cc', $this->_fromEmails);
+      $sendTemplateParams['bcc'] = CRM_Utils_Array::value('bcc', $this->_fromEmails);
+    }
+    list($mailSent, $subject, $message, $html) = CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
+    return $mailSent;
   }
-}
\ No newline at end of file
+}