mailtransport
#include <messagequeuejob.h>
Inherits KCompositeJob.
Public Member Functions | |
MessageQueueJob (QObject *parent=0) | |
virtual | ~MessageQueueJob () |
Akonadi::AddressAttribute & | addressAttribute () |
DispatchModeAttribute & | dispatchModeAttribute () |
KMime::Message::Ptr | message () const |
SentActionAttribute & | sentActionAttribute () |
SentBehaviourAttribute & | sentBehaviourAttribute () |
void | setMessage (KMime::Message::Ptr message) |
virtual void | start () |
TransportAttribute & | transportAttribute () |
Protected Slots | |
virtual void | slotResult (KJob *) |
Detailed Description
Provides an interface for sending email.
This class takes a KMime::Message and some related info such as sender and recipient addresses, and places the message in the outbox. The mail dispatcher agent will then take it from there and send it.
This is the preferred way for applications to send email.
This job requires some options to be set before being started. Modify the attributes of this job to change these options.
You need to set the transport of the transport attribute, the from address of the address attribute and one of the to, cc or bcc addresses of the address attribute. Also, you need to call setMessage(). Optionally, you can change the dispatch mode attribute or the sent behaviour attribute.
Example:
- See Also
- DispatchModeAttribute
- SentActionAttribute
- SentBehaviourAttribute
- TransportAttribute
- AddressAttribute
- Since
- 4.4
Definition at line 86 of file messagequeuejob.h.
Constructor & Destructor Documentation
|
explicit |
Creates a new MessageQueueJob.
This is not an autostarting job; you need to call start() yourself.
Definition at line 169 of file messagequeuejob.cpp.
|
virtual |
Destroys the MessageQueueJob.
This job deletes itself after finishing.
Definition at line 174 of file messagequeuejob.cpp.
Member Function Documentation
AddressAttribute & MessageQueueJob::addressAttribute | ( | ) |
Returns a reference to the address attribue for this message.
Modify the returned attribute to change the receivers or the from address.
Definition at line 189 of file messagequeuejob.cpp.
DispatchModeAttribute & MessageQueueJob::dispatchModeAttribute | ( | ) |
Returns a reference to the dispatch mode attribue for this message.
Modify the returned attribute to change the dispatch mode.
Definition at line 184 of file messagequeuejob.cpp.
Message::Ptr MessageQueueJob::message | ( | ) | const |
Returns the message to be sent.
Definition at line 179 of file messagequeuejob.cpp.
SentActionAttribute & MessageQueueJob::sentActionAttribute | ( | ) |
Returns a reference to the sent action attribue for this message.
Modify the returned attribute to change the sent actions.
Definition at line 204 of file messagequeuejob.cpp.
SentBehaviourAttribute & MessageQueueJob::sentBehaviourAttribute | ( | ) |
Returns a reference to the sent behaviour attribue for this message.
Modify the returned attribute to change the sent behaviour.
Definition at line 199 of file messagequeuejob.cpp.
void MessageQueueJob::setMessage | ( | KMime::Message::Ptr | message | ) |
Sets the message to be sent.
Definition at line 209 of file messagequeuejob.cpp.
|
protectedvirtualslot |
Called when the ItemCreateJob subjob finishes.
(reimplemented from KCompositeJob)
Definition at line 222 of file messagequeuejob.cpp.
|
virtual |
Creates the item and places it in the outbox.
It is now queued for sending by the mail dispatcher agent.
Definition at line 214 of file messagequeuejob.cpp.
TransportAttribute & MessageQueueJob::transportAttribute | ( | ) |
Returns a reference to the transport attribue for this message.
Modify the returned attribute to change the transport used for sending the mail.
Definition at line 194 of file messagequeuejob.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Dec 10 2012 13:47:51 by doxygen 1.8.1.2 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.