msvcrt: Add scheduler_resource_allocation_error class implementation.
[wine.git] / dlls / winemapi / sendmail.c
blob03a29ba7eba3d9892fb6b6358f75e5f88a533041
1 /*
2 * MAPISendMail implementation
4 * Copyright 2005 Hans Leidekker
5 * Copyright 2009 Owen Rudge for CodeWeavers
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "config.h"
23 #include "wine/port.h"
25 #include <stdio.h>
26 #include <stdarg.h>
28 #define COBJMACROS
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winerror.h"
33 #include "mapi.h"
34 #include "winreg.h"
35 #include "shellapi.h"
36 #include "shlwapi.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(winemapi);
41 /* Escapes a string for use in mailto: URL */
42 static char *escape_string(char *in, char *empty_string)
44 HRESULT res;
45 DWORD size;
46 char *escaped = NULL;
48 if (!in)
49 return empty_string;
51 size = 1;
52 res = UrlEscapeA(in, empty_string, &size, URL_ESCAPE_PERCENT | URL_ESCAPE_SEGMENT_ONLY);
54 if (res == E_POINTER)
56 escaped = HeapAlloc(GetProcessHeap(), 0, size);
58 if (!escaped)
59 return in;
61 /* If for some reason UrlEscape fails, just send the original text */
62 if (UrlEscapeA(in, escaped, &size, URL_ESCAPE_PERCENT | URL_ESCAPE_SEGMENT_ONLY) != S_OK)
64 HeapFree(GetProcessHeap(), 0, escaped);
65 escaped = in;
69 return escaped ? escaped : empty_string;
72 /**************************************************************************
73 * MAPISendMail
75 * Send a message using a native mail client.
77 * PARAMS
78 * session [I] Handle to a MAPI session.
79 * uiparam [I] Parent window handle.
80 * message [I] Pointer to a MAPIMessage structure.
81 * flags [I] Flags.
82 * reserved [I] Reserved, pass 0.
84 * RETURNS
85 * Success: SUCCESS_SUCCESS
86 * Failure: MAPI_E_FAILURE
89 ULONG WINAPI MAPISendMail(LHANDLE session, ULONG_PTR uiparam,
90 lpMapiMessage message, FLAGS flags, ULONG reserved)
92 ULONG ret = MAPI_E_FAILURE;
93 unsigned int i, to_count = 0, cc_count = 0, bcc_count = 0;
94 unsigned int to_size = 0, cc_size = 0, bcc_size = 0, subj_size, body_size;
96 char *to = NULL, *cc = NULL, *bcc = NULL, *subject = NULL, *body = NULL;
97 const char *address;
98 static const char format[] =
99 "mailto:\"%s\"?subject=\"%s\"&cc=\"%s\"&bcc=\"%s\"&body=\"%s\"";
100 static const char smtp[] = "smtp:";
101 char *mailto = NULL, *escape = NULL;
102 char empty_string[] = "";
103 HRESULT res;
104 DWORD size;
106 TRACE("(0x%08lx 0x%08lx %p 0x%08x 0x%08x)\n", session, uiparam,
107 message, flags, reserved);
109 if (!message)
110 return MAPI_E_FAILURE;
112 for (i = 0; i < message->nRecipCount; i++)
114 if (!message->lpRecips)
116 WARN("No recipients found\n");
117 return MAPI_E_FAILURE;
120 address = message->lpRecips[i].lpszAddress;
122 if (address)
124 if (!strncasecmp(address, smtp, sizeof(smtp) - 1))
125 address += sizeof(smtp) - 1;
127 switch (message->lpRecips[i].ulRecipClass)
129 case MAPI_ORIG:
130 TRACE("From: %s\n", debugstr_a(address));
131 break;
133 case MAPI_TO:
134 TRACE("To: %s\n", debugstr_a(address));
135 to_size += lstrlenA(address) + 1;
136 break;
138 case MAPI_CC:
139 TRACE("Cc: %s\n", debugstr_a(address));
140 cc_size += lstrlenA(address) + 1;
141 break;
143 case MAPI_BCC:
144 TRACE("Bcc: %s\n", debugstr_a(address));
145 bcc_size += lstrlenA(address) + 1;
146 break;
148 default:
149 TRACE("Unknown recipient class: %d\n",
150 message->lpRecips[i].ulRecipClass);
153 else
154 FIXME("Name resolution and entry identifiers not supported\n");
157 if (message->nFileCount)
159 FIXME("Ignoring %u attachments:\n", message->nFileCount);
160 for (i = 0; i < message->nFileCount; i++)
161 FIXME("\t%s (%s)\n", debugstr_a(message->lpFiles[i].lpszPathName),
162 debugstr_a(message->lpFiles[i].lpszFileName));
165 /* Escape subject and body */
166 subject = escape_string(message->lpszSubject, empty_string);
167 body = escape_string(message->lpszNoteText, empty_string);
169 TRACE("Subject: %s\n", debugstr_a(subject));
170 TRACE("Body: %s\n", debugstr_a(body));
172 subj_size = lstrlenA(subject);
173 body_size = lstrlenA(body);
175 ret = MAPI_E_INSUFFICIENT_MEMORY;
177 if (to_size)
179 to = HeapAlloc(GetProcessHeap(), 0, to_size);
181 if (!to)
182 goto exit;
184 to[0] = 0;
187 if (cc_size)
189 cc = HeapAlloc(GetProcessHeap(), 0, cc_size);
191 if (!cc)
192 goto exit;
194 cc[0] = 0;
197 if (bcc_size)
199 bcc = HeapAlloc(GetProcessHeap(), 0, bcc_size);
201 if (!bcc)
202 goto exit;
204 bcc[0] = 0;
207 if (message->lpOriginator)
208 TRACE("From: %s\n", debugstr_a(message->lpOriginator->lpszAddress));
210 for (i = 0; i < message->nRecipCount; i++)
212 address = message->lpRecips[i].lpszAddress;
214 if (address)
216 if (!strncasecmp(address, smtp, sizeof(smtp) - 1))
217 address += sizeof(smtp) - 1;
219 switch (message->lpRecips[i].ulRecipClass)
221 case MAPI_TO:
222 if (to_count)
223 lstrcatA(to, ",");
225 lstrcatA(to, address);
226 to_count++;
227 break;
229 case MAPI_CC:
230 if (cc_count)
231 lstrcatA(cc, ",");
233 lstrcatA(cc, address);
234 cc_count++;
235 break;
237 case MAPI_BCC:
238 if (bcc_count)
239 lstrcatA(bcc, ",");
241 lstrcatA(bcc, address);
242 bcc_count++;
243 break;
247 ret = MAPI_E_FAILURE;
248 size = sizeof(format) + to_size + cc_size + bcc_size + subj_size + body_size;
250 mailto = HeapAlloc(GetProcessHeap(), 0, size);
252 if (!mailto)
253 goto exit;
255 sprintf(mailto, format, to ? to : "", subject, cc ? cc : "", bcc ? bcc : "", body);
257 size = 1;
258 res = UrlEscapeA(mailto, empty_string, &size, URL_ESCAPE_SPACES_ONLY);
260 if (res != E_POINTER)
261 goto exit;
263 escape = HeapAlloc(GetProcessHeap(), 0, size);
265 if (!escape)
266 goto exit;
268 res = UrlEscapeA(mailto, escape, &size, URL_ESCAPE_SPACES_ONLY);
270 if (res != S_OK)
271 goto exit;
273 TRACE("Executing winebrowser.exe with parameters '%s'\n", debugstr_a(escape));
275 if ((UINT_PTR) ShellExecuteA(NULL, "open", "winebrowser.exe", escape, NULL, 0) > 32)
276 ret = SUCCESS_SUCCESS;
278 exit:
279 HeapFree(GetProcessHeap(), 0, to);
280 HeapFree(GetProcessHeap(), 0, cc);
281 HeapFree(GetProcessHeap(), 0, bcc);
282 HeapFree(GetProcessHeap(), 0, mailto);
283 HeapFree(GetProcessHeap(), 0, escape);
285 if (subject != empty_string)
286 HeapFree(GetProcessHeap(), 0, subject);
288 if (body != empty_string)
289 HeapFree(GetProcessHeap(), 0, body);
291 return ret;
294 ULONG WINAPI MAPISendDocuments(ULONG_PTR uiparam, LPSTR delim, LPSTR paths,
295 LPSTR filenames, ULONG reserved)
297 return MAPI_E_NOT_SUPPORTED;