在发送客户端电子邮件之前运行,并允许选择性地删除抄送和密送收件人。
参数
变量 | 类型 | 注意 |
---|---|---|
messagename | string | 正在发送的电子邮件模板的名称 |
relid | int | 正在发送的电子邮件的相关实体 ID |
recipients | array | 包含 ‘cc’ and ‘bcc’ 收件人的数组。每个收件人将是一个包含 ‘email’ and ‘fullname’ 索引的数组 |
响应
具有 ‘cc’ and ‘bcc’ 收件人列表的数组。这些列表中的每个收件人都应使用 $recipients 参数提供的原始索引哈希进行索引。如果提供了一个空的‘cc’ or ‘bcc’ 列表,它将分别删除所有‘cc’ or ‘bcc’ 收件人。如果在返回中省略‘cc’ or ‘bcc’,则原始列表将保持不变
示例代码
<?php
add_hook('PreEmailSendReduceRecipients', 1, function($vars) {
// Perform hook code here...
});
相关用法
- PHP WHMCS PreAutomationTask用法及代码示例
- PHP WHMCS PreModuleRenew用法及代码示例
- PHP WHMCS PremiumPriceOverride用法及代码示例
- PHP WHMCS PreModuleProvisionAddOnFeature用法及代码示例
- PHP WHMCS PreRegistrarGetDNS用法及代码示例
- PHP WHMCS PreRegistrarGetNameservers用法及代码示例
- PHP WHMCS PreRegistrarSaveContactDetails用法及代码示例
- PHP WHMCS PreRegistrarRenewDomain用法及代码示例
- PHP WHMCS PreModuleCreate用法及代码示例
- PHP WHMCS PreFraudCheck用法及代码示例
- PHP WHMCS PreCalculateCartTotals用法及代码示例
- PHP WHMCS PreRegistrarTransferDomain用法及代码示例
- PHP WHMCS PreModuleSuspendAddOnFeature用法及代码示例
- PHP WHMCS PreRegistrarGetContactDetails用法及代码示例
- PHP WHMCS PreUpgradeCheckout用法及代码示例
- PHP WHMCS PreModuleChangePassword用法及代码示例
- PHP WHMCS PreRegistrarGetEPPCode用法及代码示例
- PHP WHMCS PreShoppingCartCheckout用法及代码示例
- PHP WHMCS PreModuleDeprovisionAddOnFeature用法及代码示例
- PHP WHMCS PreModuleCustom用法及代码示例
- PHP WHMCS PreDomainRegister用法及代码示例
- PHP WHMCS PreServiceEdit用法及代码示例
- PHP WHMCS PreModuleTerminate用法及代码示例
- PHP WHMCS PreDeleteClient用法及代码示例
- PHP WHMCS PreRegistrarSaveNameservers用法及代码示例
注:本文由纯净天空筛选整理自whmcs.com大神的英文原创作品 PreEmailSendReduceRecipients。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。