File: emailpreferences.cpp

package info (click to toggle)
nixnote2 2.0~beta11-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,448 kB
  • ctags: 7,058
  • sloc: cpp: 68,338; java: 1,096; sh: 834; makefile: 27
file content (186 lines) | stat: -rw-r--r-- 6,952 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#include "global.h"

#include <QMessageBox>

#include "dialog/emaildialog.h"
#include "email/smtpclient.h"
#include "email/mimeinlinefile.h"
#include "email/mimehtml.h"
#include "emailpreferences.h"

extern Global global;

EmailPreferences::EmailPreferences(QWidget *parent) :
    QWidget(parent)
{

    smtpServerLabel.setText(tr("SMTP Server"));
    smtpPortLabel.setText(tr("Server Port"));
    useridLabel.setText(tr("Userid"));
    passwordLabel.setText(tr("Password"));
    senderNameLabel.setText(tr("Sender Display Name"));
    senderEmailLabel.setText(tr("Sender Email"));
    smtpConnectionTypeLabel.setText(tr("Connection Type"));

    password.setEchoMode(QLineEdit::Password);
    smtpPort.setInputMask("99999");

    QGridLayout *mainLayout = new QGridLayout(this);
    mainLayout->setAlignment(Qt::AlignTop | Qt::AlignLeft);

    smtpConnectionType.addItem(tr("Plain Text"), "TcpConnection");
    smtpConnectionType.addItem(tr("SSL Connection"), "SslConnection");
    smtpConnectionType.addItem(tr("TLS Connection"), "TlsConnection");

    testEmail = new QPushButton(tr("Send Test Email"));
    connect(testEmail, SIGNAL(pressed()), this, SLOT(sendTestEmail()));

    int row = 0;
    mainLayout->addWidget(&smtpServerLabel, row, 0);
    mainLayout->addWidget(&smtpServer, row++, 1);
    mainLayout->addWidget(&smtpPortLabel, row, 0);
    mainLayout->addWidget(&smtpPort, row++, 1);
    mainLayout->addWidget(&smtpConnectionTypeLabel, row, 0);
    mainLayout->addWidget(&smtpConnectionType, row++, 1);
    mainLayout->addWidget(&useridLabel, row, 0);
    mainLayout->addWidget(&userid, row++, 1);
    mainLayout->addWidget(&passwordLabel, row, 0);
    mainLayout->addWidget(&password, row++, 1);
    mainLayout->addWidget(&senderEmailLabel, row, 0);
    mainLayout->addWidget(&senderEmail, row++, 1);
    mainLayout->addWidget(&senderNameLabel, row, 0);
    mainLayout->addWidget(&senderName, row++, 1);
    mainLayout->addWidget(testEmail, row++,0);

    // Get the smtp server settings
    global.settings->beginGroup("Email");
    QString s = global.settings->value("smtpServer", "").toString();
    QString p = global.settings->value("smtpPort", "25").toString();
    QString ctype = global.settings->value("smtpConnectionType", "TcpConnection").toString();
    QString u = global.settings->value("userid", "").toString();
    QString pswd = global.settings->value("password", "").toString();
    QString senderE = global.settings->value("senderEmail", "").toString();
    QString senderN = global.settings->value("senderName", "").toString();
    global.settings->endGroup();

    int index = smtpConnectionType.findData(ctype);
    smtpConnectionType.setCurrentIndex(index);

    smtpServer.setText(s);
    smtpPort.setText(p);
    userid.setText(u);
    password.setText(pswd);
    senderEmail.setText(senderE);
    senderName.setText(senderN);
}



void EmailPreferences::saveValues() {
    int index = smtpConnectionType.currentIndex();
    QString ctype = smtpConnectionType.itemData(index).toString();


    global.settings->beginGroup("Email");
    global.settings->setValue("smtpServer", smtpServer.text().trimmed());
    global.settings->setValue("smtpPort", smtpPort.text().trimmed());
    global.settings->setValue("smtpConnectionType", ctype);
    global.settings->setValue("userid", userid.text().trimmed());
    global.settings->setValue("password", password.text().trimmed());
    global.settings->setValue("senderEmail", senderEmail.text().trimmed());
    global.settings->setValue("senderName", senderName.text().trimmed());
    global.settings->endGroup();
}



void EmailPreferences::sendTestEmail() {
    QString server = this->smtpServer.text().trimmed();
    int port = this->smtpPort.text().trimmed().toInt();
    int index = this->smtpConnectionType.currentIndex();
    QString smtpConnectionType = this->smtpConnectionType.itemData(index).toString();
    QString userid = this->userid.text().trimmed();
    QString password = this->password.text().trimmed();
    QString senderEmail = this->senderEmail.text().trimmed();
    QString senderName = this->senderName.text().trimmed();

    if (server == "") {
        QMessageBox::critical(this, tr("Setup Error"),
             tr("You must specify a SMTP server."), QMessageBox::Ok);
        return;
    }
    if (senderEmail == "") {
        QMessageBox::critical(this, tr("Setup Error"),
             tr("You must specify a sender email."), QMessageBox::Ok);
        return;
    }


    SmtpClient::ConnectionType type = SmtpClient::TcpConnection;
    if (smtpConnectionType == "SslConnection")
        type = SmtpClient::SslConnection;
    if (smtpConnectionType == "TlsConnection")
        type = SmtpClient::TlsConnection;

    SmtpClient smtp(server, port, type);
    smtp.setResponseTimeout(-1);

    // We need to set the username (your email address) and password
    // for smtp authentication.
    smtp.setUser(userid);
    smtp.setPassword(password);

    // Now we create a MimeMessage object. This is the email.
    MimeMessage message;

    EmailAddress sender(senderEmail, senderName);
    message.setSender(&sender);

    if (senderName == "")
        senderName = senderEmail;
    EmailAddress *to = new EmailAddress(senderEmail, senderName);
    message.addRecipient(to);


    // Set the subject
    message.setSubject(tr("Test Email From NixNote"));

    // Set the note text
    MimeHtml html;
//    html.setHtml(QString(tr("<h1>This is a test email from NixNote.</h1> "))+
//                 QString(tr("If you are reading it then your email preferences are are setup properly.<br><img src='cid:image1'/>")));
      QString msg = QString(tr("<h1>This is a test email from NixNote.</h1> "));
      msg = msg + QString(tr("If you are reading it then your email preferences are are setup properly."));
      html.setHtml(msg);
//    QFile *logo = new QFile(global.fileManager.getProgramDirPath("")+"splash_logo.png");
//    MimeInlineFile image1(logo);
//    image1.setContentType("image/png");
//    image1.setContentId("image1");
//    message.addPart(&html);
//    message.addPart(&image1);
      message.setContent(&html);


    // Send the actual message.
    if (!smtp.connectToHost()) {
        QLOG_ERROR()<< "Failed to connect to host!";
        QMessageBox::critical(this, tr("Connection Error"), tr("Unable to connect to host."), QMessageBox::Ok);
        return;
    }

    if (!smtp.login()) {
        QLOG_ERROR() << "Failed to login!";
        QMessageBox::critical(this, tr("Login Error"), tr("Unable to login."), QMessageBox::Ok);
        return;
    }

    if (!smtp.sendMail(message)) {
        QMessageBox::critical(this, tr("Send Error"), tr("Unable to send email."), QMessageBox::Ok);
        QLOG_ERROR() << "Failed to send mail!";
        QLOG_ERROR() << smtp.getResponseText();
        return;
    }

    smtp.quit();
    QMessageBox::information(this, tr("Message Sent"), tr("Message sent."), QMessageBox::Ok);
}