Function __global->send_invoice_notification

Definitions

sources/ecommerce_tax.php

  • Send an invoice notification to a member.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$member_id MEMBER No No required parameter N/A N/A The member to send to
$id AUTO_LINK No No required parameter N/A N/A The invoice ID
$fulfilled boolean No No False N/A N/A Whether this invoice was just fulfilled

Preview

Code (PHP)

/**
 * Send an invoice notification to a member.
 *
 * @param  MEMBER $member_id The member to send to
 * @param  AUTO_LINK $id The invoice ID
 * @param  boolean $fulfilled Whether this invoice was just fulfilled
 */

function send_invoice_notification(int $member_id, int $id, bool $fulfilled = false)