当前位置:   article > 正文

Qt发送邮件_qttwlg@kzmail.club

qttwlg@kzmail.club

首先下载支持库
https://download.csdn.net/download/zhangxuechao_/10598108

#ifndef MAIL_H
#define MAIL_H

#include <QString>

class Mail
{
public:
    Mail();
    void sendMail(QString user, QString fileName);
};

#endif // MAIL_H
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
#include "mail.h"
#include "sendemailapi/smtpmime.h"

Mail::Mail()
{

}

void Mail::sendMail(QString user, QString fileName)
{
    SmtpClient smtp("smtp.163.com", 25, SmtpClient::TcpConnection);
    smtp.setUser("test@163.com");
    smtp.setPassword("123456");

    //构建邮件主题,包含发件人收件人附件等.
    MimeMessage message;
    message.setSender(new EmailAddress("test@163.com"));

    //逐个添加收件人
    message.addRecipient(new EmailAddress("test@qq.com"));

    //构建邮件标题
    message.setSubject(QStringLiteral("title"));

    //构建邮件正文
    MimeText text;
    text.setText(QStringLiteral("hello furong"));
    message.addPart(&text);

    if (!smtp.connectToHost()){
        return;
    }
    if (!smtp.login()){
        return;
    }
    if (!smtp.sendMail(message)){
        return;
    }

    smtp.quit();
}
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/300028
推荐阅读
相关标签
  

闽ICP备14008679号