vmime/examples/example2.cpp

122 lines
3.5 KiB
C++
Raw Normal View History

2004-10-05 10:28:21 +00:00
//
2005-03-18 21:33:11 +00:00
// VMime library (http://www.vmime.org)
2018-09-05 21:54:48 +00:00
// Copyright (C) 2002 Vincent Richard <vincent@vmime.org>
2004-10-05 10:28:21 +00:00
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 3 of
2004-10-05 10:28:21 +00:00
// the License, or (at your option) any later version.
//
// This program 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
// General Public License for more details.
//
2005-09-17 10:10:29 +00:00
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// Linking this library statically or dynamically with other modules is making
// a combined work based on this library. Thus, the terms and conditions of
// the GNU General Public License cover the whole combination.
2004-10-05 10:28:21 +00:00
//
//
// EXAMPLE DESCRIPTION:
// ====================
// This sample program demonstrate the use of the messageBuilder component
// to build a simple message with an attachment.
//
// For more information, please visit:
2005-03-18 21:33:11 +00:00
// http://www.vmime.org/
2004-10-05 10:28:21 +00:00
//
#include <iostream>
#include <locale>
#include <clocale>
2004-10-05 10:28:21 +00:00
#include "vmime/vmime.hpp"
2004-12-30 09:32:32 +00:00
#include "vmime/platforms/posix/posixHandler.hpp"
2004-10-05 10:28:21 +00:00
2018-09-05 21:54:48 +00:00
int main() {
2004-10-05 10:28:21 +00:00
std::cout << std::endl;
// Set the global C and C++ locale to the user-configured locale.
// The locale should use UTF-8 encoding for these tests to run successfully.
2018-09-05 21:54:48 +00:00
try {
std::locale::global(std::locale(""));
2018-09-05 21:54:48 +00:00
} catch (std::exception &) {
std::setlocale(LC_ALL, "");
}
2004-10-05 10:28:21 +00:00
2018-09-05 21:54:48 +00:00
try {
2004-10-05 10:28:21 +00:00
vmime::messageBuilder mb;
// Fill in the basic fields
2004-10-21 15:05:47 +00:00
mb.setExpeditor(vmime::mailbox("me@somewhere.com"));
vmime::addressList to;
2013-11-21 21:16:57 +00:00
to.appendAddress(vmime::make_shared <vmime::mailbox>("you@elsewhere.com"));
2004-10-21 15:05:47 +00:00
mb.setRecipients(to);
vmime::addressList bcc;
2013-11-21 21:16:57 +00:00
bcc.appendAddress(vmime::make_shared <vmime::mailbox>("you-bcc@nowhere.com"));
2004-10-21 15:05:47 +00:00
mb.setBlindCopyRecipients(bcc);
mb.setSubject(vmime::text("My first message generated with vmime::messageBuilder"));
2004-10-05 10:28:21 +00:00
// Message body
2018-09-05 21:54:48 +00:00
mb.getTextPart()->setText(
vmime::make_shared <vmime::stringContentHandler>(
"I'm writing this short text to test message construction " \
"with attachment, using the vmime::messageBuilder component."
)
);
2004-10-05 10:28:21 +00:00
// Adding an attachment
2018-09-05 21:54:48 +00:00
vmime::shared_ptr <vmime::fileAttachment> a =
vmime::make_shared <vmime::fileAttachment>(
__FILE__, // full path to file
vmime::mediaType("application/octet-stream"), // content type
vmime::text("My first attachment") // description
);
2004-10-05 10:28:21 +00:00
2004-10-21 15:05:47 +00:00
a->getFileInfo().setFilename("example2.cpp");
a->getFileInfo().setCreationDate(vmime::datetime("30 Apr 2003 14:30:00 +0200"));
2004-10-05 10:28:21 +00:00
mb.attach(a);
// Construction
2013-11-21 21:16:57 +00:00
vmime::shared_ptr <vmime::message> msg = mb.construct();
2004-10-05 10:28:21 +00:00
// Raw text generation
vmime::string dataToSend = msg->generate();
std::cout << "Generated message:" << std::endl;
std::cout << "==================" << std::endl;
std::cout << std::endl;
std::cout << dataToSend << std::endl;
2018-09-05 21:54:48 +00:00
2004-10-05 10:28:21 +00:00
// VMime exception
2018-09-05 21:54:48 +00:00
} catch (vmime::exception& e) {
2004-10-05 10:28:21 +00:00
std::cout << "vmime::exception: " << e.what() << std::endl;
throw;
2018-09-05 21:54:48 +00:00
2004-10-05 10:28:21 +00:00
// Standard exception
2018-09-05 21:54:48 +00:00
} catch (std::exception& e) {
2004-10-05 10:28:21 +00:00
std::cout << "std::exception: " << e.what() << std::endl;
throw;
}
std::cout << std::endl;
2018-09-05 21:54:48 +00:00
return 0;
}