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


PHP CakeEmail::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($config = null)
 {
     if ($config === null) {
         $config = 'default';
     }
     parent::__construct($config);
     $this->resetAndSet($config);
 }
开发者ID:ByMyHandsOnly,项目名称:BMHO_Web,代码行数:8,代码来源:EmailLib.php

示例2: __construct

 /**
  * Constructor
  *
  * @param array|string $config Array of configs, or string to load configs from email.php
  * @see CakeEmail::__construct()
  */
 public function __construct($config = null)
 {
     parent::__construct($config);
     $this->MailSetting = ClassRegistry::init('Mails.MailSetting');
     $this->RoomsLanguage = ClassRegistry::init('Rooms.RoomsLanguage');
     $this->RolesRoomsUser = ClassRegistry::init('Rooms.RolesRoomsUser');
     $this->User = ClassRegistry::init('Users.User');
     $this->mailAssignTag = new NetCommonsMailAssignTag();
 }
开发者ID:NetCommons3,项目名称:Mails,代码行数:15,代码来源:NetCommonsMail.php

示例3: __construct

 public function __construct($config = null)
 {
     parent::__construct($config);
     $s = new Smarty();
     $log = Configure::read('Postman.writeLog');
     if ($log) {
         $this->RegisteredMailLog = ClassRegistry::init('RegisteredMailLog');
     }
     include_once SMARTY_PLUGINS_DIR . 'shared.mb_wordwrap.php';
 }
开发者ID:k1low,项目名称:postman,代码行数:10,代码来源:RegisteredMail.php

示例4: __construct

 public function __construct($config = null)
 {
     if ($config === null) {
         $config = 'default';
     }
     $this->_domain = env('HTTP_HOST');
     if (empty($this->_domain)) {
         $this->_domain = php_uname('n');
     }
     parent::__construct($config);
     $this->resetAndSet();
 }
开发者ID:robksawyer,项目名称:grabitdown,代码行数:12,代码来源:EmailLib.php

示例5: __construct

 public function __construct($config)
 {
     parent::__construct($config);
     $this->from('mailerloop@mailerloop.com');
 }
开发者ID:kimbalt,项目名称:mailerloop,代码行数:5,代码来源:MailerLoopEmail.php


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