本文整理汇总了PHP中Oro\Bundle\EmailBundle\Entity\Email::getEmailBody方法的典型用法代码示例。如果您正苦于以下问题:PHP Email::getEmailBody方法的具体用法?PHP Email::getEmailBody怎么用?PHP Email::getEmailBody使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Oro\Bundle\EmailBundle\Entity\Email
的用法示例。
在下文中一共展示了Email::getEmailBody方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ensureEmailBodyCached
/**
* Check that email body is cached.
* If do not, load it using appropriate email extension add it to a cache.
*
* @param Email $email
*
* @throws LoadEmailBodyException if a body of the given email cannot be loaded
*/
public function ensureEmailBodyCached(Email $email)
{
if ($email->getEmailBody() === null) {
// body loader can load email from any folder
// todo: refactor to use correct emailuser and origin
// to use active origin and get correct folder from this origin
$emailUser = $email->getEmailUsers()->first();
$folder = $emailUser->getFolders()->first();
$origin = $emailUser->getOrigin();
if (!$origin) {
throw new LoadEmailBodyFailedException($email);
}
$loader = $this->selector->select($origin);
try {
$emailBody = $loader->loadEmailBody($folder, $email, $this->em);
} catch (LoadEmailBodyException $loadEx) {
$this->logger->notice(sprintf('Load email body failed. Email id: %d. Error: %s', $email->getId(), $loadEx->getMessage()), ['exception' => $loadEx]);
throw $loadEx;
} catch (\Exception $ex) {
$this->logger->warning(sprintf('Load email body failed. Email id: %d. Error: %s.', $email->getId(), $ex->getMessage()), ['exception' => $ex]);
throw new LoadEmailBodyFailedException($email, $ex);
}
$email->setEmailBody($emailBody);
$this->em->persist($email);
$this->em->flush();
$event = new EmailBodyAdded($email);
$this->eventDispatcher->dispatch(EmailBodyAdded::NAME, $event);
}
$this->eventDispatcher->dispatch(EmailBodyLoaded::NAME, new EmailBodyLoaded($email));
}
示例2: ensureEmailBodyCached
/**
* Check that email body is cached.
* If do not, load it using appropriate email extension add it to a cache.
*
* @param Email $email
*
* @throws LoadEmailBodyException if a body of the given email cannot be loaded
*/
public function ensureEmailBodyCached(Email $email)
{
if ($email->getEmailBody() !== null) {
// The email body is already cached
return;
}
// body loader can load email from any folder
$folder = $email->getEmailUsers()->first()->getFolder();
$origin = $folder->getOrigin();
$loader = $this->selector->select($origin);
try {
$emailBody = $loader->loadEmailBody($folder, $email, $this->em);
} catch (LoadEmailBodyException $loadEx) {
$this->logger->notice(sprintf('Load email body failed. Email id: %d. Error: %s', $email->getId(), $loadEx->getMessage()), ['exception' => $loadEx]);
throw $loadEx;
} catch (\Exception $ex) {
$this->logger->warning(sprintf('Load email body failed. Email id: %d. Error: %s.', $email->getId(), $ex->getMessage()), ['exception' => $ex]);
throw new LoadEmailBodyFailedException($email, $ex);
}
$email->setEmailBody($emailBody);
$this->em->persist($email);
$this->em->flush();
$event = new EmailBodyAdded($email);
$this->eventDispatcher->dispatch(EmailBodyAdded::NAME, $event);
}
示例3: testEmailBodyGetterAndSetter
public function testEmailBodyGetterAndSetter()
{
$emailBody = $this->getMock('Oro\\Bundle\\EmailBundle\\Entity\\EmailBody');
$entity = new Email();
$entity->setEmailBody($emailBody);
$this->assertTrue($emailBody === $entity->getEmailBody());
}
示例4: ensureEmailBodyCached
/**
* Check that email body is cached.
* If do not, load it using appropriate email extension add it to a cache.
*
* @param Email $email
*/
public function ensureEmailBodyCached(Email $email)
{
if ($email->getEmailBody() === null) {
$this->emailBodySynchronizer->syncOneEmailBody($email);
$this->em->flush();
}
$this->eventDispatcher->dispatch(EmailBodyLoaded::NAME, new EmailBodyLoaded($email));
}
示例5: ensureEmailBodyCached
/**
* Check that email body is cached.
* If do not, load it using appropriate email extension add it to a cache.
*
* @param Email $email
*/
public function ensureEmailBodyCached(Email $email)
{
if ($email->getEmailBody() !== null) {
// The email body is already cached
return;
}
$emailBody = $this->selector->select($email->getFolder()->getOrigin())->loadEmailBody($email, $this->em);
$email->setEmailBody($emailBody);
$this->em->persist($email);
$this->em->flush();
}
示例6: ensureEmailBodyCached
/**
* Check that email body is cached.
* If do not, load it using appropriate email extension add it to a cache.
*
* @param Email $email
*/
public function ensureEmailBodyCached(Email $email)
{
if ($email->getEmailBody() !== null) {
// The email body is already cached
return;
}
// body loader can load email from any folder
$folder = $email->getFolders()->first();
$origin = $folder->getOrigin();
$emailBody = $this->selector->select($origin)->loadEmailBody($folder, $email, $this->em);
$email->setEmailBody($emailBody);
$this->em->persist($email);
$this->em->flush();
}
示例7: persistAttachments
/**
* @param EmailModel $model
* @param Email $email
*/
protected function persistAttachments(EmailModel $model, Email $email)
{
/** @var EmailAttachmentModel $emailAttachmentModel */
foreach ($model->getAttachments() as $emailAttachmentModel) {
$attachment = $emailAttachmentModel->getEmailAttachment();
if (!$attachment->getId()) {
$this->getEntityManager()->persist($attachment);
} else {
$attachmentContent = clone $attachment->getContent();
$attachment = clone $attachment;
$attachment->setContent($attachmentContent);
$this->getEntityManager()->persist($attachment);
}
$email->getEmailBody()->addAttachment($attachment);
$attachment->setEmailBody($email->getEmailBody());
}
}
示例8: processBodyType
/**
* @param Email $email
* @param string $type
*/
protected function processBodyType(Email $email, $type)
{
$body = $email->getEmailBody();
if ($body) {
if ($email->getId()) {
if ($body->getBodyIsText() !== ($type === true)) {
throw $this->createInvalidPropertyException('Body Type', $this->emailBodyTypeTransformer->transform($body->getBodyIsText()), $this->emailBodyTypeTransformer->transform($type));
}
} else {
$body->setBodyIsText($type === true);
}
} else {
$email->setEmailBody($this->emailEntityBuilder->body('', $type !== true, true));
}
}