// ------------------------------- // // -------- Start of File -------- // // ------------------------------- // // ----------------------------------------------------------- // // C++ Source Code File Name: testprog.cpp // C++ Compiler Used: MSVC, BCC32, GCC, HPUX aCC, SOLARIS CC // Produced By: glNET Software // File Creation Date: 02/23/2001 // Date Last Modified: 07/23/2001 // Copyright (c) 2001 glNET Software // ----------------------------------------------------------- // // ------------- Program Description and Details ------------- // // ----------------------------------------------------------- // /* This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Test program for the embedded SMTP client class. */ // ----------------------------------------------------------- // #include <string.h> #include <iostream.h> #include "gxsmtp.h" #ifdef __MSVC_DEBUG__ #include "leaktest.h" #endif int CheckError(gxsSMTPClient *smtp) { if(smtp->GetSocketError() != gxSOCKET_NO_ERROR) { cout << smtp->SocketExceptionMessage() << endl << flush; if(smtp->reply_buf[0] != 0) { // Check the reply buffer cout << smtp->reply_buf << flush; } smtp->Close(); return 0; } return 1; // No errors reported } int main(int argc, char **argv) { #ifdef __MSVC_DEBUG__ InitLeakTest(); #endif if(argc < 3) { cout << "Usage: " << argv[0] << " server from" << endl; cout << "server = Your outgoing mail server" << endl; cout << "from = Your email address" << endl; cout << endl; cout << "Example: " << argv[0] << " mailserver.xyz.com myname@xyz.com" << endl; return 1; } char *server = argv[1]; char *from = argv[2]; char *to = "datareel@datareel.com"; char *subject = "GXS SMTP Test Message"; char *body = "Test test test...\n"; gxsSMTPClient smtp; cout << endl; cout << "Connecting to mail server" << endl; smtp.ConnectClient((const char *)server); if(!CheckError(&smtp)) return 1; cout << smtp.reply_buf << flush; // Get my domain name, as required by the server char sbuf[255]; smtp.GetDomainName(sbuf); smtp.SMTPLogin(sbuf); if(!CheckError(&smtp)) return 1; cout << smtp.reply_buf << flush; cout << endl; cout << "Sending a test message without a message header..." << endl; smtp.SMTPRSet(); if(!CheckError(&smtp)) return 1; cout << smtp.reply_buf << flush; smtp.SMTPMailFrom((const char *)from); if(!CheckError(&smtp)) return 1; cout << smtp.reply_buf << flush; smtp.SMTPRcptTo((const char *)to); if(!CheckError(&smtp)) return 1; cout << smtp.reply_buf << flush; smtp.SMTPData((const char *)body, (int)strlen(body)); if(!CheckError(&smtp)) return 1; cout << smtp.reply_buf << flush; cout << endl; cout << "Testing the send message function..." << endl; smtp.SMTPSendMessage(to, from, subject, body); if(!CheckError(&smtp)) return 1; cout << smtp.reply_buf << flush; cout << endl; cout << "Disconnecting from the server" << endl; smtp.SMTPLogout(); if(!CheckError(&smtp)) return 1; cout << smtp.reply_buf << flush; cout << endl; smtp.Close(); return 0; } // ----------------------------------------------------------- // // ------------------------------- // // --------- End of File --------- // // ------------------------------- //