Update contribution.sendconfirmation api
authorColeman Watts <coleman@civicrm.org>
Thu, 15 Aug 2013 18:16:22 +0000 (11:16 -0700)
committerColeman Watts <coleman@civicrm.org>
Thu, 15 Aug 2013 18:16:22 +0000 (11:16 -0700)
api/v3/Contribution.php

index 45b9c0e7fa2013f6c2d2781af86eb344c2fb934d..6e12ef560377745f5ad45c2757259c47f5c5ae9d 100644 (file)
@@ -336,7 +336,7 @@ function civicrm_api3_contribution_sendconfirmation($params) {
 }
 
 /**
- * Adjust Metadata for Create action
+ * Adjust Metadata for sendconfirmation action
  *
  * The metadata is used for setting defaults, documentation & validation
  * @param array $params array or parameters determined by getfields
@@ -348,8 +348,19 @@ function _civicrm_api3_contribution_sendconfirmation_spec(&$params) {
   );
   $params['receipt_from_email'] = array(
     'api.required' =>1,
-    'title' => 'From Email (required until someone provides a patch :-)',
-
+    'title' => 'From Email address (string) required until someone provides a patch :-)',
+  );
+  $params['receipt_from_name'] = array(
+    'title' => 'From Name (string)',
+  );
+  $params['cc_receipt'] = array(
+    'title' => 'CC Email address (string)',
+  );
+  $params['bcc_receipt'] = array(
+    'title' => 'BCC Email address (string)',
+  );
+  $params['receipt_text'] = array(
+    'title' => 'Message (string)',
   );
 }