/* Copyright (c) 2011 - Tőkés Attila This file is part of SmtpClient for Qt. SmtpClient for Qt 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. SmtpClient for Qt is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. See the LICENSE file for more details. */ #include "sendemail.h" #include "ui_sendemail.h" #include #include #include #include using namespace std; SendEmail::SendEmail(QWidget *parent) : QWidget(parent), ui(new Ui::SendEmail) { ui->setupUi(this); } SendEmail::~SendEmail() { delete ui; } EmailAddress SendEmail::stringToEmail(const QString &str) { int p1 = str.indexOf("<"); int p2 = str.indexOf(">"); if (p1 == -1) { // no name, only email address return EmailAddress(str); } else { return EmailAddress(str.mid(p1 + 1, p2 - p1 - 1), str.left(p1)); } } void SendEmail::on_addAttachment_clicked() { QFileDialog dialog(this); dialog.setFileMode(QFileDialog::ExistingFiles); if (dialog.exec()) ui->attachments->addItems(dialog.selectedFiles()); } void SendEmail::on_sendEmail_clicked() { QString host = ui->host->text(); int port = ui->port->value(); bool ssl = ui->ssl->isChecked(); bool auth = ui->auth->isChecked(); QString user = ui->username->text(); QString password = ui->password->text(); EmailAddress sender = stringToEmail(ui->sender->text()); QStringList rcptStringList = ui->recipients->text().split(';'); QString subject = ui->subject->text(); QString html = ui->texteditor->toHtml(); SmtpClient smtp (host, port, ssl ? SmtpClient::SslConnection : SmtpClient::TcpConnection); MimeMessage message; message.setSender(sender); message.setSubject(subject); for (int i = 0; i < rcptStringList.size(); ++i) message.addRecipient(stringToEmail(rcptStringList.at(i))); MimeHtml content; content.setHtml(html); message.addPart(&content); for (int i = 0; i < ui->attachments->count(); ++i) { message.addPart(new MimeAttachment(new QFile(ui->attachments->item(i)->text()))); } smtp.connectToHost(); if (!smtp.waitForReadyConnected()) { errorMessage("Connection Failed"); return; } if (auth) smtp.login(user, password); if (!smtp.waitForAuthenticated()) { errorMessage("Authentification Failed"); return; } smtp.sendMail(message); if (!smtp.waitForMailSent()) { errorMessage("Mail sending failed"); return; } else { QMessageBox okMessage (this); okMessage.setText("The email was succesfully sent."); okMessage.exec(); } smtp.quit(); } void SendEmail::errorMessage(const QString &message) { QErrorMessage err (this); err.showMessage(message); err.exec(); }