|
ferencd@0
|
1 //
|
|
ferencd@0
|
2 // VMime library (http://www.vmime.org)
|
|
ferencd@0
|
3 // Copyright (C) 2002-2013 Vincent Richard <vincent@vmime.org>
|
|
ferencd@0
|
4 //
|
|
ferencd@0
|
5 // This program is free software; you can redistribute it and/or
|
|
ferencd@0
|
6 // modify it under the terms of the GNU General Public License as
|
|
ferencd@0
|
7 // published by the Free Software Foundation; either version 3 of
|
|
ferencd@0
|
8 // the License, or (at your option) any later version.
|
|
ferencd@0
|
9 //
|
|
ferencd@0
|
10 // This program is distributed in the hope that it will be useful,
|
|
ferencd@0
|
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
ferencd@0
|
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
ferencd@0
|
13 // General Public License for more details.
|
|
ferencd@0
|
14 //
|
|
ferencd@0
|
15 // You should have received a copy of the GNU General Public License along
|
|
ferencd@0
|
16 // with this program; if not, write to the Free Software Foundation, Inc.,
|
|
ferencd@0
|
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
ferencd@0
|
18 //
|
|
ferencd@0
|
19 // Linking this library statically or dynamically with other modules is making
|
|
ferencd@0
|
20 // a combined work based on this library. Thus, the terms and conditions of
|
|
ferencd@0
|
21 // the GNU General Public License cover the whole combination.
|
|
ferencd@0
|
22 //
|
|
ferencd@0
|
23
|
|
ferencd@0
|
24 //
|
|
ferencd@0
|
25 // EXAMPLE DESCRIPTION:
|
|
ferencd@0
|
26 // ====================
|
|
ferencd@0
|
27 // This sample program demonstrate the use of the messageBuilder component
|
|
ferencd@0
|
28 // to build a simple message with an attachment.
|
|
ferencd@0
|
29 //
|
|
ferencd@0
|
30 // For more information, please visit:
|
|
ferencd@0
|
31 // http://www.vmime.org/
|
|
ferencd@0
|
32 //
|
|
ferencd@0
|
33
|
|
ferencd@0
|
34 #include <iostream>
|
|
ferencd@0
|
35 #include <locale>
|
|
ferencd@0
|
36 #include <clocale>
|
|
ferencd@0
|
37
|
|
ferencd@0
|
38 #include "vmime/vmime.hpp"
|
|
ferencd@0
|
39 #include "vmime/platforms/posix/posixHandler.hpp"
|
|
ferencd@0
|
40
|
|
ferencd@0
|
41
|
|
ferencd@0
|
42 int main()
|
|
ferencd@0
|
43 {
|
|
ferencd@0
|
44 std::cout << std::endl;
|
|
ferencd@0
|
45
|
|
ferencd@0
|
46 // Set the global C and C++ locale to the user-configured locale.
|
|
ferencd@0
|
47 // The locale should use UTF-8 encoding for these tests to run successfully.
|
|
ferencd@0
|
48 try
|
|
ferencd@0
|
49 {
|
|
ferencd@0
|
50 std::locale::global(std::locale(""));
|
|
ferencd@0
|
51 }
|
|
ferencd@0
|
52 catch (std::exception &)
|
|
ferencd@0
|
53 {
|
|
ferencd@0
|
54 std::setlocale(LC_ALL, "");
|
|
ferencd@0
|
55 }
|
|
ferencd@0
|
56
|
|
ferencd@0
|
57 try
|
|
ferencd@0
|
58 {
|
|
ferencd@0
|
59 vmime::messageBuilder mb;
|
|
ferencd@0
|
60
|
|
ferencd@0
|
61 // Fill in the basic fields
|
|
ferencd@0
|
62 mb.setExpeditor(vmime::mailbox("me@somewhere.com"));
|
|
ferencd@0
|
63
|
|
ferencd@0
|
64 vmime::addressList to;
|
|
ferencd@0
|
65 to.appendAddress(vmime::make_shared <vmime::mailbox>("you@elsewhere.com"));
|
|
ferencd@0
|
66
|
|
ferencd@0
|
67 mb.setRecipients(to);
|
|
ferencd@0
|
68
|
|
ferencd@0
|
69 vmime::addressList bcc;
|
|
ferencd@0
|
70 bcc.appendAddress(vmime::make_shared <vmime::mailbox>("you-bcc@nowhere.com"));
|
|
ferencd@0
|
71
|
|
ferencd@0
|
72 mb.setBlindCopyRecipients(bcc);
|
|
ferencd@0
|
73
|
|
ferencd@0
|
74 mb.setSubject(vmime::text("My first message generated with vmime::messageBuilder"));
|
|
ferencd@0
|
75
|
|
ferencd@0
|
76 // Message body
|
|
ferencd@0
|
77 mb.getTextPart()->setText(vmime::make_shared <vmime::stringContentHandler>(
|
|
ferencd@0
|
78 "I'm writing this short text to test message construction " \
|
|
ferencd@0
|
79 "with attachment, using the vmime::messageBuilder component."));
|
|
ferencd@0
|
80
|
|
ferencd@0
|
81 // Adding an attachment
|
|
ferencd@0
|
82 vmime::shared_ptr <vmime::fileAttachment> a = vmime::make_shared <vmime::fileAttachment>
|
|
ferencd@0
|
83 (
|
|
ferencd@0
|
84 __FILE__, // full path to file
|
|
ferencd@0
|
85 vmime::mediaType("application/octet-stream"), // content type
|
|
ferencd@0
|
86 vmime::text("My first attachment") // description
|
|
ferencd@0
|
87 );
|
|
ferencd@0
|
88
|
|
ferencd@0
|
89 a->getFileInfo().setFilename("example2.cpp");
|
|
ferencd@0
|
90 a->getFileInfo().setCreationDate(vmime::datetime("30 Apr 2003 14:30:00 +0200"));
|
|
ferencd@0
|
91
|
|
ferencd@0
|
92 mb.attach(a);
|
|
ferencd@0
|
93
|
|
ferencd@0
|
94 // Construction
|
|
ferencd@0
|
95 vmime::shared_ptr <vmime::message> msg = mb.construct();
|
|
ferencd@0
|
96
|
|
ferencd@0
|
97 // Raw text generation
|
|
ferencd@0
|
98 vmime::string dataToSend = msg->generate();
|
|
ferencd@0
|
99
|
|
ferencd@0
|
100 std::cout << "Generated message:" << std::endl;
|
|
ferencd@0
|
101 std::cout << "==================" << std::endl;
|
|
ferencd@0
|
102 std::cout << std::endl;
|
|
ferencd@0
|
103 std::cout << dataToSend << std::endl;
|
|
ferencd@0
|
104 }
|
|
ferencd@0
|
105 // VMime exception
|
|
ferencd@0
|
106 catch (vmime::exception& e)
|
|
ferencd@0
|
107 {
|
|
ferencd@0
|
108 std::cout << "vmime::exception: " << e.what() << std::endl;
|
|
ferencd@0
|
109 throw;
|
|
ferencd@0
|
110 }
|
|
ferencd@0
|
111 // Standard exception
|
|
ferencd@0
|
112 catch (std::exception& e)
|
|
ferencd@0
|
113 {
|
|
ferencd@0
|
114 std::cout << "std::exception: " << e.what() << std::endl;
|
|
ferencd@0
|
115 throw;
|
|
ferencd@0
|
116 }
|
|
ferencd@0
|
117
|
|
ferencd@0
|
118 std::cout << std::endl;
|
|
ferencd@0
|
119 }
|
|
ferencd@0
|
120
|