XOOPS RMCommon Utilities
2.1.8.91RC
Main Page
Classes
Files
File List
File Members
XOOPS RMCommon Utilities
Classes
Files
File List
L:
XOOPS_Allure
SVN_XOOPS2
RMC
rmcommon
trunk
rmcommon
ajax
api
blocks
class
cipher
fields
gettext
plugins
swift
classes
Swift
ByteStream
CharacterReader
CharacterReaderFactory
CharacterStream
Encoder
Events
CommandEvent.php
CommandListener.php
Event.php
EventDispatcher.php
EventListener.php
EventObject.php
ResponseEvent.php
ResponseListener.php
SendEvent.php
SendListener.php
SimpleEventDispatcher.php
TransportChangeEvent.php
TransportChangeListener.php
TransportExceptionEvent.php
TransportExceptionListener.php
KeyCache
Mailer
Mime
Plugins
StreamFilters
Transport
Attachment.php
CharacterReader.php
CharacterReaderFactory.php
CharacterStream.php
DependencyContainer.php
DependencyException.php
EmbeddedFile.php
Encoder.php
Encoding.php
FailoverTransport.php
FileStream.php
Filterable.php
Image.php
InputByteStream.php
IoException.php
KeyCache.php
LoadBalancedTransport.php
Mailer.php
MailTransport.php
Message.php
MimePart.php
OutputByteStream.php
Preferences.php
ReplacementFilterFactory.php
RfcComplianceException.php
SendmailTransport.php
SmtpTransport.php
StreamFilter.php
SwiftException.php
Transport.php
TransportException.php
Swift.php
dependency_maps
mime_types.php
preferences.php
swift_init.php
swift_required.php
swift_required_pear.php
blockposition.php
blocksfunctions.php
breadcrumb.php
comment.php
commentuser.php
crypt.php
flashuploader.php
form.class.php
ftpclient.php
functions.php
htaccess.class.php
icommentscontroller.php
image.php
imagecategory.php
imageresizer.php
internalblock.php
iplugin.php
mailer.php
object.php
pagenav.php
phmagick.php
plugin.php
proxy.php
template.php
textcleaner.php
timeformatter.php
uploader.php
user.php
utilities.php
events
include
language
preloads
templates
themes
admin_loader.php
blocks.php
comments.php
images.php
index.php
loader.php
menu.php
modules.php
plugins.php
post_comment.php
rss.php
updates.php
users.php
xoops_version.php
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
SendEvent.php
Go to the documentation of this file.
1
<?php
2
3
/*
4
* This file is part of SwiftMailer.
5
* (c) 2004-2009 Chris Corbyn
6
*
7
* For the full copyright and license information, please view the LICENSE
8
* file that was distributed with this source code.
9
*/
10
11
//@require 'Swift/Events/EventObject.php';
12
19
class
Swift_Events_SendEvent
extends
Swift_Events_EventObject
20
{
21
23
const
RESULT_PENDING
= 0x0001;
24
26
const
RESULT_SUCCESS
= 0x0010;
27
29
const
RESULT_TENTATIVE
= 0x0100;
30
32
const
RESULT_FAILED
= 0x1000;
33
38
private
$_message
;
39
44
private
$_transport
;
45
50
private
$failedRecipients
= array();
51
56
private
$result
;
57
63
public
function
__construct
(
Swift_Transport
$source,
64
Swift_Mime_Message
$message)
65
{
66
parent::__construct
($source);
67
$this->_message = $message;
68
$this->_result = self::RESULT_PENDING;
69
}
70
75
public
function
getTransport
()
76
{
77
return
$this->
getSource
();
78
}
79
84
public
function
getMessage
()
85
{
86
return
$this->_message
;
87
}
88
93
public
function
setFailedRecipients
($recipients)
94
{
95
$this->_failedRecipients = $recipients;
96
}
97
102
public
function
getFailedRecipients
()
103
{
104
return
$this->_failedRecipients;
105
}
106
111
public
function
setResult
(
$result
)
112
{
113
$this->_result =
$result
;
114
}
115
122
public
function
getResult
()
123
{
124
return
$this->_result;
125
}
126
127
}
L:
XOOPS_Allure
SVN_XOOPS2
RMC
rmcommon
trunk
rmcommon
class
swift
classes
Swift
Events
SendEvent.php
Generated on Sun Mar 17 2013 20:41:06 for XOOPS RMCommon Utilities by
1.8.3.1