当前位置: 首页>>代码示例>>PHP>>正文


PHP Email::getEmailBody方法代码示例

本文整理汇总了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));
 }
开发者ID:Maksold,项目名称:platform,代码行数:38,代码来源:EmailCacheManager.php

示例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);
 }
开发者ID:EyeOpenServer,项目名称:platform,代码行数:33,代码来源:EmailCacheManager.php

示例3: testEmailBodyGetterAndSetter

 public function testEmailBodyGetterAndSetter()
 {
     $emailBody = $this->getMock('Oro\\Bundle\\EmailBundle\\Entity\\EmailBody');
     $entity = new Email();
     $entity->setEmailBody($emailBody);
     $this->assertTrue($emailBody === $entity->getEmailBody());
 }
开发者ID:Maksold,项目名称:platform,代码行数:7,代码来源:EmailTest.php

示例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));
 }
开发者ID:snorchel,项目名称:platform,代码行数:14,代码来源:EmailCacheManager.php

示例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();
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:17,代码来源:EmailCacheManager.php

示例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();
 }
开发者ID:xamin123,项目名称:platform,代码行数:20,代码来源:EmailCacheManager.php

示例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());
     }
 }
开发者ID:northdakota,项目名称:platform,代码行数:21,代码来源:Processor.php

示例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));
     }
 }
开发者ID:nmallare,项目名称:platform,代码行数:19,代码来源:EmailApiHandler.php


注:本文中的Oro\Bundle\EmailBundle\Entity\Email::getEmailBody方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。