diff --git a/app/Http/Controllers/PaymentController.php b/app/Http/Controllers/PaymentController.php index d63361abf0ac..2501c4d4ea79 100644 --- a/app/Http/Controllers/PaymentController.php +++ b/app/Http/Controllers/PaymentController.php @@ -239,7 +239,7 @@ class PaymentController extends BaseController $ids = Input::get('public_id') ? Input::get('public_id') : Input::get('ids'); if ($action === 'email') { - $payment = Payment::scope($ids)->first(); + $payment = Payment::scope($ids)->withArchived()->first(); $this->contactMailer->sendPaymentConfirmation($payment); Session::flash('message', trans('texts.emailed_payment')); } else {