本文整理汇总了PHP中CRM_Mailing_BAO_Mailing::getVerpAndUrlsAndHeaders方法的典型用法代码示例。如果您正苦于以下问题:PHP CRM_Mailing_BAO_Mailing::getVerpAndUrlsAndHeaders方法的具体用法?PHP CRM_Mailing_BAO_Mailing::getVerpAndUrlsAndHeaders怎么用?PHP CRM_Mailing_BAO_Mailing::getVerpAndUrlsAndHeaders使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CRM_Mailing_BAO_Mailing
的用法示例。
在下文中一共展示了CRM_Mailing_BAO_Mailing::getVerpAndUrlsAndHeaders方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getVerpAndUrls
/**
* Static wrapper for getting verp and urls.
*
* @param int $job_id
* ID of the Job associated with this message.
* @param int $event_queue_id
* ID of the EventQueue.
* @param string $hash
* Hash of the EventQueue.
* @param string $email
* Destination address.
*
* @return array
* (reference) array array ref that hold array refs to the verp info and urls
*/
public static function getVerpAndUrls($job_id, $event_queue_id, $hash, $email)
{
// create a skeleton object and set its properties that are required by getVerpAndUrlsAndHeaders()
$config = CRM_Core_Config::singleton();
$bao = new CRM_Mailing_BAO_Mailing();
$bao->_domain = CRM_Core_BAO_Domain::getDomain();
$bao->from_name = $bao->from_email = $bao->subject = '';
// use $bao's instance method to get verp and urls
list($verp, $urls, $_) = $bao->getVerpAndUrlsAndHeaders($job_id, $event_queue_id, $hash, $email);
return array($verp, $urls);
}