urbackup_backend/urlplugin/UrlFactory.h
2011-09-22 21:17:31 +02:00

8 lines
253 B
C++

#include "IUrlFactory.h"
class UrlFactory : public IUrlFactory
{
public:
virtual bool sendMail(const MailServer &server, const std::vector<std::string> &to,
const std::string &subject, const std::string &message, std::string *errmsg=NULL);
};