Skip to content

Commit f0c5f04

Browse files
committed
swapping out the multi_mail() calls for the new Mail class equivalent call
1 parent eb2fc1f commit f0c5f04

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ function_requirements('get_paypal_link');
379379
$smarty->assign('paypal_link', get_paypal_link('SERVICElicenses' . $serviceid, $service_cost, $invoice->get_description()));
380380
$msg = $smarty->fetch('email/client/license_paytoactivate.tpl');
381381
$subject = 'New Pending License for ' . $ip . ' at cPanelDirect.net';
382-
multi_mail($data['account_lid'], $subject, $msg, 'client/license_paytoactivate.tpl');
382+
(new \MyAdmin\Mail())->multiMail($subject, $msg, $data['account_lid'], 'client/license_paytoactivate.tpl');
383383
$return['status'] = 'ok';
384384
$return['status_text'] .= "Order Completed Successfully.\n";
385385
$return['invoice'] = $iid;

0 commit comments

Comments
 (0)