interface PaymentDeclinedMailInterface in Commerce Recurring Framework 8
Hierarchy
- interface \Drupal\commerce_recurring\Mail\PaymentDeclinedMailInterface
Expanded class hierarchy of PaymentDeclinedMailInterface
All classes that implement PaymentDeclinedMailInterface
File
- src/
Mail/ PaymentDeclinedMailInterface.php, line 7
Namespace
Drupal\commerce_recurring\MailView source
interface PaymentDeclinedMailInterface {
/**
* Sends a payment declined email.
*
* @param \Drupal\commerce_order\Entity\OrderInterface $order
* The recurring order.
* @param int $retry_days
* Days until next retry.
* @param int $num_retries
* Number of past attempts.
* @param int $max_retries
* Maximum number of retries allowed.
*
* @return bool
* TRUE if the email was sent successfully, FALSE otherwise.
*/
public function send(OrderInterface $order, $retry_days, $num_retries, $max_retries);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PaymentDeclinedMailInterface:: |
public | function | Sends a payment declined email. | 1 |