本文整理匯總了PHP中ezcMailTools::generateContentId方法的典型用法代碼示例。如果您正苦於以下問題:PHP ezcMailTools::generateContentId方法的具體用法?PHP ezcMailTools::generateContentId怎麽用?PHP ezcMailTools::generateContentId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ezcMailTools
的用法示例。
在下文中一共展示了ezcMailTools::generateContentId方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: addRelatedPart
/**
* Adds $part to the list of parts and returns the Content-ID of the part.
*
* @param ezcMailPart $part
* @return string
*/
public function addRelatedPart(ezcMailPart $part)
{
// it doesn't have a Content-ID, we must set one.
$contentId = '';
if ($part->getHeader('Content-ID') == '') {
if ($part instanceof ezcMailFile) {
$part->contentId = ezcMailTools::generateContentId(basename($part->fileName));
} else {
$part->setHeader('Content-ID', ezcMailTools::generateContentId('part'));
}
}
$contentId = trim($part->getHeader('Content-ID'), '<>');
// Set the content ID property of the ezcMailFile if one was found
if ($part instanceof ezcMailFile) {
$part->contentId = $contentId;
}
if (count($this->parts) > 0) {
$this->parts[] = $part;
} else {
$this->parts[1] = $part;
}
return $contentId;
}