summaryrefslogtreecommitdiff
path: root/src/mail.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mail.cpp')
-rw-r--r--src/mail.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/mail.cpp b/src/mail.cpp
new file mode 100644
index 0000000..0c868d2
--- /dev/null
+++ b/src/mail.cpp
@@ -0,0 +1,53 @@
+#include "mail.hpp"
+
+#include <iostream>
+
+mailer::mailer( std::string server, unsigned short port, std::string username, std::string password, std::string from )
+ : server( server ), port( port ), username( username ), password( password ), from( from )
+{
+ quickmail_initialize( );
+ mailobj = quickmail_create( NULL, NULL );
+}
+
+mailer::~mailer( )
+{
+ quickmail_destroy( mailobj );
+}
+
+void mailer::send( )
+{
+ if( !from.empty( ) ) {
+ quickmail_set_from( mailobj, from.c_str( ) );
+ }
+
+ if( !to.empty( ) ) {
+ quickmail_add_to( mailobj, to.c_str( ) );
+ }
+
+ if( !subject.empty( ) ) {
+ quickmail_set_subject( mailobj, subject.c_str( ) );
+ }
+
+ if( !body.empty( ) ) {
+ quickmail_add_body_memory( mailobj, "text/plain", const_cast<char *>( body.c_str( ) ), body.size( ), 0 );
+ }
+
+ _hasError = false;
+ const char *errmsg;
+ errmsg = quickmail_send( mailobj, server.c_str( ), port, username.c_str( ), password.c_str( ) );
+ if( errmsg != NULL ) {
+ _hasError = true;
+ lastErrorMsg = std::string( errmsg );
+ }
+}
+
+bool mailer::hasError( )
+{
+ return _hasError;
+}
+
+std::string mailer::getLastError( )
+{
+ return lastErrorMsg;
+}
+