mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
39 lines
948 B
C++
39 lines
948 B
C++
/*
|
|
Copyright (c) 2005 by Volker Krause <vkrause@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
|
|
*/
|
|
|
|
#ifndef KNODE_MAILSENDJOB_H
|
|
#define KNODE_MAILSENDJOB_H
|
|
|
|
#include "knjobdata.h"
|
|
|
|
class KJob;
|
|
|
|
namespace KNode {
|
|
|
|
/** Sends a mail to a SMTP server. */
|
|
class MailSendJob : public KNJobData
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MailSendJob( KNJobConsumer *c, int transportId, KNJobItem::Ptr i );
|
|
|
|
virtual void execute();
|
|
|
|
private slots:
|
|
void slotResult( KJob *job );
|
|
|
|
private:
|
|
int mTransportId;
|
|
};
|
|
|
|
}
|
|
#endif
|