2011-08-30 18:59:16 +00:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2011-08-11T20:59:25
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
|
|
|
QT += core gui network
|
|
|
|
|
|
|
|
TARGET = SMTPEmail
|
|
|
|
TEMPLATE = app
|
|
|
|
|
|
|
|
|
2011-08-30 20:20:06 +00:00
|
|
|
SOURCES += smtpclient.cpp \
|
2011-08-30 18:59:16 +00:00
|
|
|
mimemessage.cpp \
|
|
|
|
mimepart.cpp \
|
|
|
|
mimetext.cpp \
|
|
|
|
mimeattachment.cpp \
|
|
|
|
mimehtml.cpp \
|
|
|
|
emailaddress.cpp \
|
|
|
|
mimefile.cpp \
|
2011-08-30 20:07:07 +00:00
|
|
|
mimeinlinefile.cpp \
|
2011-08-30 21:00:44 +00:00
|
|
|
main.cpp
|
2011-08-30 18:59:16 +00:00
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
smtpclient.h \
|
|
|
|
mimemessage.h \
|
|
|
|
mimepart.h \
|
|
|
|
mimetext.h \
|
|
|
|
mimeattachment.h \
|
|
|
|
mimehtml.h \
|
|
|
|
emailaddress.h \
|
|
|
|
mimefile.h \
|
2011-08-30 21:00:44 +00:00
|
|
|
mimeinlinefile.h \
|
|
|
|
SmtpMime
|