34 lines
623 B
Prolog
34 lines
623 B
Prolog
|
#-------------------------------------------------
|
||
|
#
|
||
|
# Project created by QtCreator 2011-08-11T20:59:25
|
||
|
#
|
||
|
#-------------------------------------------------
|
||
|
|
||
|
QT += core gui network
|
||
|
|
||
|
TARGET = SMTPEmail
|
||
|
TEMPLATE = app
|
||
|
|
||
|
|
||
|
SOURCES += main.cpp \
|
||
|
smtpclient.cpp \
|
||
|
mimemessage.cpp \
|
||
|
mimepart.cpp \
|
||
|
mimetext.cpp \
|
||
|
mimeattachment.cpp \
|
||
|
mimehtml.cpp \
|
||
|
emailaddress.cpp \
|
||
|
mimefile.cpp \
|
||
|
mimeinlinefile.cpp
|
||
|
|
||
|
HEADERS += \
|
||
|
smtpclient.h \
|
||
|
mimemessage.h \
|
||
|
mimepart.h \
|
||
|
mimetext.h \
|
||
|
mimeattachment.h \
|
||
|
mimehtml.h \
|
||
|
emailaddress.h \
|
||
|
mimefile.h \
|
||
|
mimeinlinefile.h
|