Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
aab90c51
Commit
aab90c51
authored
Nov 04, 2013
by
Klimov Paul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'MessageInterface' updated to support 'method chain' call style.
parent
ef6fea96
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
0 deletions
+35
-0
Message.php
extensions/swiftmailer/yii/swiftmailer/Message.php
+10
-0
MailerInterface.php
framework/yii/mail/MailerInterface.php
+2
-0
MessageInterface.php
framework/yii/mail/MessageInterface.php
+23
-0
No files found.
extensions/swiftmailer/yii/swiftmailer/Message.php
View file @
aab90c51
...
...
@@ -45,6 +45,7 @@ class Message extends BaseMessage
public
function
setCharset
(
$charset
)
{
$this
->
getSwiftMessage
()
->
setCharset
(
$charset
);
return
$this
;
}
/**
...
...
@@ -62,6 +63,7 @@ class Message extends BaseMessage
{
$this
->
getSwiftMessage
()
->
setFrom
(
$from
);
$this
->
getSwiftMessage
()
->
setReplyTo
(
$from
);
return
$this
;
}
/**
...
...
@@ -78,6 +80,7 @@ class Message extends BaseMessage
public
function
setTo
(
$to
)
{
$this
->
getSwiftMessage
()
->
setTo
(
$to
);
return
$this
;
}
/**
...
...
@@ -94,6 +97,7 @@ class Message extends BaseMessage
public
function
setCc
(
$cc
)
{
$this
->
getSwiftMessage
()
->
setCc
(
$cc
);
return
$this
;
}
/**
...
...
@@ -110,6 +114,7 @@ class Message extends BaseMessage
public
function
setBcc
(
$bcc
)
{
$this
->
getSwiftMessage
()
->
setBcc
(
$bcc
);
return
$this
;
}
/**
...
...
@@ -126,6 +131,7 @@ class Message extends BaseMessage
public
function
setSubject
(
$subject
)
{
$this
->
getSwiftMessage
()
->
setSubject
(
$subject
);
return
$this
;
}
/**
...
...
@@ -142,6 +148,7 @@ class Message extends BaseMessage
public
function
setText
(
$text
)
{
$this
->
setBody
(
$text
,
'text/plain'
);
return
$this
;
}
/**
...
...
@@ -150,6 +157,7 @@ class Message extends BaseMessage
public
function
setHtml
(
$html
)
{
$this
->
setBody
(
$html
,
'text/html'
);
return
$this
;
}
/**
...
...
@@ -209,6 +217,7 @@ class Message extends BaseMessage
$attachment
->
setContentType
(
$options
[
'contentType'
]);
}
$this
->
getSwiftMessage
()
->
attach
(
$attachment
);
return
$this
;
}
/**
...
...
@@ -224,6 +233,7 @@ class Message extends BaseMessage
$attachment
->
setContentType
(
$options
[
'contentType'
]);
}
$this
->
getSwiftMessage
()
->
attach
(
$attachment
);
return
$this
;
}
/**
...
...
framework/yii/mail/MailerInterface.php
View file @
aab90c51
...
...
@@ -10,6 +10,8 @@ namespace yii\mail;
/**
* MailerInterface is an interface, which any mailer should apply.
*
* @see MessageInterface
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0
*/
...
...
framework/yii/mail/MessageInterface.php
View file @
aab90c51
...
...
@@ -9,6 +9,19 @@ namespace yii\mail;
/**
* MessageInterface is an interface, which email message should apply.
* Together with application component, which matches the [[MailerInterface]],
* it introduces following mail sending syntax:
* ~~~php
* Yii::$app->mail->createMessage()
* ->setFrom('from@domain.com')
* ->setTo('to@domain.com')
* ->setSubject('Message Subject')
* ->renderText('text/view')
* ->renderHtml('html/view')
* ->send();
* ~~~
*
* @see MailerInterface
*
* @author Paul Klimov <klimov.paul@gmail.com>
* @since 2.0
...
...
@@ -18,6 +31,7 @@ interface MessageInterface
/**
* Set the character set of this message.
* @param string $charset character set name.
* @return static self reference.
*/
public
function
setCharset
(
$charset
);
...
...
@@ -27,6 +41,7 @@ interface MessageInterface
* You may pass an array of addresses if this message is from multiple people.
* You may also specify sender name in addition to email address using format:
* [email => name].
* @return static self reference.
*/
public
function
setFrom
(
$from
);
...
...
@@ -36,6 +51,7 @@ interface MessageInterface
* You may pass an array of addresses if multiple recipients should receive this message.
* You may also specify receiver name in addition to email address using format:
* [email => name].
* @return static self reference.
*/
public
function
setTo
(
$to
);
...
...
@@ -45,6 +61,7 @@ interface MessageInterface
* You may pass an array of addresses if multiple recipients should receive this message.
* You may also specify receiver name in addition to email address using format:
* [email => name].
* @return static self reference.
*/
public
function
setCc
(
$cc
);
...
...
@@ -54,24 +71,28 @@ interface MessageInterface
* You may pass an array of addresses if multiple recipients should receive this message.
* You may also specify receiver name in addition to email address using format:
* [email => name].
* @return static self reference.
*/
public
function
setBcc
(
$bcc
);
/**
* Sets message subject.
* @param string $subject message subject
* @return static self reference.
*/
public
function
setSubject
(
$subject
);
/**
* Sets message plain text content.
* @param string $text message plain text content.
* @return static self reference.
*/
public
function
setText
(
$text
);
/**
* Sets message HTML content.
* @param string $html message HTML content.
* @return static self reference.
*/
public
function
setHtml
(
$html
);
...
...
@@ -81,6 +102,7 @@ interface MessageInterface
* @param array $options options for embed file. Valid options are:
* - fileName: name, which should be used to attach file.
* - contentType: attached file MIME type.
* @return static self reference.
*/
public
function
attachContent
(
$content
,
array
$options
=
[]);
...
...
@@ -90,6 +112,7 @@ interface MessageInterface
* @param array $options options for embed file. Valid options are:
* - fileName: name, which should be used to attach file.
* - contentType: attached file MIME type.
* @return static self reference.
*/
public
function
attachFile
(
$fileName
,
array
$options
=
[]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment