You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
126 lines
2.3 KiB
126 lines
2.3 KiB
12 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\swiftmailer;
|
||
|
|
||
|
use yii\email\BaseMessage;
|
||
|
|
||
|
/**
|
||
|
* Email message based on SwiftMailer library.
|
||
|
*
|
||
|
* @see http://swiftmailer.org/docs/messages.html
|
||
|
* @see \yii\swiftmailer\Mailer
|
||
|
*
|
||
|
* @method Mailer getMailer() returns mailer instance.
|
||
|
* @property \Swift_Message $swiftMessage vendor message instance.
|
||
|
*
|
||
|
* @author Paul Klimov <klimov.paul@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
class Message extends BaseMessage
|
||
|
{
|
||
|
/**
|
||
|
* @var \Swift_Message Swift message instance.
|
||
|
*/
|
||
|
private $_swiftMessage;
|
||
|
|
||
|
/**
|
||
|
* @return \Swift_Message Swift message instance.
|
||
|
*/
|
||
|
public function getSwiftMessage()
|
||
|
{
|
||
|
if (!is_object($this->_swiftMessage)) {
|
||
|
$this->_swiftMessage = $this->getMailer()->createSwiftMessage();
|
||
|
}
|
||
|
return $this->_swiftMessage;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function setFrom($from)
|
||
|
{
|
||
|
$this->getSwiftMessage()->setFrom($from);
|
||
|
$this->getSwiftMessage()->setReplyTo($from);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function setTo($to)
|
||
|
{
|
||
|
$this->getSwiftMessage()->setTo($to);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function setCc($cc)
|
||
|
{
|
||
|
$this->getSwiftMessage()->setCc($cc);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function setBcc($bcc)
|
||
|
{
|
||
|
$this->getSwiftMessage()->setBcc($bcc);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function setSubject($subject)
|
||
|
{
|
||
|
$this->getSwiftMessage()->setSubject($subject);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function setText($text)
|
||
|
{
|
||
|
$this->getSwiftMessage()->setBody($text, 'text/plain');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function setHtml($html)
|
||
|
{
|
||
|
$this->getSwiftMessage()->setBody($html, 'text/html');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function addText($text)
|
||
|
{
|
||
|
$this->getSwiftMessage()->addPart($text, 'text/plain');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function addHtml($html)
|
||
|
{
|
||
|
$this->getSwiftMessage()->addPart($html, 'text/html');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function createAttachment($content, $fileName, $contentType = 'application/octet-stream')
|
||
|
{
|
||
|
if (empty($contentType)) {
|
||
|
$contentType = 'application/octet-stream';
|
||
|
}
|
||
|
$attachment = \Swift_Attachment::newInstance($content, $fileName, $contentType);
|
||
|
$this->getSwiftMessage()->attach($attachment);
|
||
|
}
|
||
|
}
|