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


PHP Swift_Mime_Message::embed方法代码示例

本文整理汇总了PHP中Swift_Mime_Message::embed方法的典型用法代码示例。如果您正苦于以下问题:PHP Swift_Mime_Message::embed方法的具体用法?PHP Swift_Mime_Message::embed怎么用?PHP Swift_Mime_Message::embed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Swift_Mime_Message的用法示例。


在下文中一共展示了Swift_Mime_Message::embed方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: transform

 /**
  * {@inheritdoc)
  */
 public function transform(\Swift_Mime_Message $message)
 {
     $body = $message->getBody();
     $body = preg_replace_callback('/(src|background)="(http[^"]*)"/', function ($matches) use($message) {
         $attribute = $matches[1];
         $imagePath = $matches[2];
         if ($fp = fopen($imagePath, "r")) {
             $imagePath = $message->embed(\Swift_Image::fromPath($imagePath));
             fclose($fp);
         }
         return sprintf('%s="%s"', $attribute, $imagePath);
     }, $body);
     $body = preg_replace_callback('/url\\((http[^"]*)\\)/', function ($matches) use($message) {
         $imagePath = $matches[1];
         if ($fp = fopen($imagePath, "r")) {
             $imagePath = $message->embed(\Swift_Image::fromPath($imagePath));
             fclose($fp);
         }
         return sprintf('url(%s)', $imagePath);
     }, $body);
     $message->setBody($body, 'text/html');
 }
开发者ID:rezzza,项目名称:MailExtraBundle,代码行数:25,代码来源:PictureEmbedTransformer.php

示例2: embedData

 /**
  * {@inheritdoc}
  */
 public function embedData(string $data, string $name, string $contentType = null) : string
 {
     $image = Swift_Image::newInstance($data, $name, $contentType);
     return $this->swift->embed($image);
 }
开发者ID:narrowspark,项目名称:framework,代码行数:8,代码来源:Message.php

示例3: pictureEmbed

 /**
  * Embed pictures
  *
  * @param \Swift_Mime_Message $message E-mail message
  *
  * @access public
  * @return void
  * @author Etienne de Longeaux <etienne.delongeaux@gmail.com>
  */
 public function pictureEmbed(\Swift_Mime_Message &$message)
 {
     $body = $message->getBody();
     $body = preg_replace_callback('/(src|background)="(http[^"]*)"/', function ($matches) use($message) {
         $attribute = $matches[1];
         $imagePath = $matches[2];
         if ($fp = fopen($imagePath, "r")) {
             // You can embed files from a URL if allow_url_fopen is on in php.ini
             $imagePath = $message->embed(\Swift_Image::fromPath($imagePath));
             fclose($fp);
         }
         return sprintf('%s="%s"', $attribute, $imagePath);
     }, $body);
     $body = preg_replace_callback('/url\\((http[^"]*)\\)/', function ($matches) use($message) {
         $imagePath = $matches[1];
         if ($fp = fopen($imagePath, "r")) {
             // You can embed files from a URL if allow_url_fopen is on in php.ini
             $imagePath = $message->embed(\Swift_Image::fromPath($imagePath));
             fclose($fp);
         }
         return sprintf('url(%s)', $imagePath);
     }, $body);
     $message->setBody($body, 'text/html');
 }
开发者ID:pigroupe,项目名称:SfynxToolBundle,代码行数:33,代码来源:PiMailerManager.php


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