2 * MAPISendMail implementation
4 * Copyright 2005 Hans Leidekker
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(mapi
);
40 /**************************************************************************
41 * MAPISendMail (MAPI32.211)
46 * session [I] Handle to a MAPI session.
47 * uiparam [I] Parent window handle.
48 * message [I] Pointer to a MAPIMessage structure.
50 * reserved [I] Reserved, pass 0.
53 * Success: SUCCESS_SUCCESS
54 * Failure: MAPI_E_FAILURE
57 * This is a temporary hack.
59 ULONG WINAPI
MAPISendMail( LHANDLE session
, ULONG_PTR uiparam
,
60 lpMapiMessage message
, FLAGS flags
, ULONG reserved
)
62 ULONG ret
= MAPI_E_FAILURE
;
63 unsigned int i
, to_count
= 0, cc_count
= 0, bcc_count
= 0;
64 unsigned int to_size
= 0, cc_size
= 0, bcc_size
= 0, subj_size
, body_size
;
66 char *to
= NULL
, *cc
= NULL
, *bcc
= NULL
;
67 const char *address
, *subject
, *body
;
68 static const char format
[] =
69 "mailto:\"%s\"?subject=\"%s\"&cc=\"%s\"&bcc=\"%s\"&body=\"%s\"";
70 char *mailto
= NULL
, *escape
= NULL
;
74 TRACE( "(0x%08lx 0x%08lx %p 0x%08lx 0x%08x)\n", session
, uiparam
,
75 message
, flags
, reserved
);
77 if (!message
) return MAPI_E_FAILURE
;
79 for (i
= 0; i
< message
->nRecipCount
; i
++)
81 if (!message
->lpRecips
)
83 WARN("No recipients found\n");
84 return MAPI_E_FAILURE
;
87 address
= message
->lpRecips
[i
].lpszAddress
;
90 switch (message
->lpRecips
[i
].ulRecipClass
)
93 TRACE( "From: %s\n", debugstr_a(address
) );
96 TRACE( "To: %s\n", debugstr_a(address
) );
97 to_size
+= lstrlenA( address
) + 1;
100 TRACE( "Cc: %s\n", debugstr_a(address
) );
101 cc_size
+= lstrlenA( address
) + 1;
104 TRACE( "Bcc: %s\n", debugstr_a(address
) );
105 bcc_size
+= lstrlenA( address
) + 1;
108 TRACE( "Unknown recipient class: %d\n",
109 message
->lpRecips
[i
].ulRecipClass
);
113 FIXME("Name resolution and entry identifiers not supported\n");
115 if (message
->nFileCount
) FIXME("Ignoring attachments\n");
117 subject
= message
->lpszSubject
? message
->lpszSubject
: "";
118 body
= message
->lpszNoteText
? message
->lpszNoteText
: "";
120 TRACE( "Subject: %s\n", debugstr_a(subject
) );
121 TRACE( "Body: %s\n", debugstr_a(body
) );
123 subj_size
= lstrlenA( subject
);
124 body_size
= lstrlenA( body
);
126 ret
= MAPI_E_INSUFFICIENT_MEMORY
;
129 to
= HeapAlloc( GetProcessHeap(), 0, to_size
);
134 cc
= HeapAlloc( GetProcessHeap(), 0, cc_size
);
139 bcc
= HeapAlloc( GetProcessHeap(), 0, bcc_size
);
143 if (message
->lpOriginator
)
144 TRACE( "From: %s\n", debugstr_a(message
->lpOriginator
->lpszAddress
) );
146 for (i
= 0; i
< message
->nRecipCount
; i
++)
148 address
= message
->lpRecips
[i
].lpszAddress
;
151 switch (message
->lpRecips
[i
].ulRecipClass
)
154 if (to_count
) lstrcatA( to
, "," );
155 lstrcatA( to
, address
);
159 if (cc_count
) lstrcatA( cc
, "," );
160 lstrcatA( cc
, address
);
164 if (bcc_count
) lstrcatA( bcc
, "," );
165 lstrcatA( bcc
, address
);
171 ret
= MAPI_E_FAILURE
;
172 size
= sizeof(format
) + to_size
+ cc_size
+ bcc_size
+ subj_size
+ body_size
;
174 mailto
= HeapAlloc( GetProcessHeap(), 0, size
);
175 if (!mailto
) goto exit
;
177 sprintf( mailto
, format
, to
? to
: "", subject
, cc
? cc
: "", bcc
? bcc
: "", body
);
180 res
= UrlEscapeA( mailto
, NULL
, &size
, URL_ESCAPE_SPACES_ONLY
);
181 if (res
!= E_POINTER
) goto exit
;
183 escape
= HeapAlloc( GetProcessHeap(), 0, size
);
184 if (!escape
) goto exit
;
186 res
= UrlEscapeA( mailto
, escape
, &size
, URL_ESCAPE_SPACES_ONLY
);
187 if (res
!= S_OK
) goto exit
;
189 if ((UINT_PTR
)ShellExecuteA( NULL
, "open", escape
, NULL
, NULL
, 0 ) > 32)
190 ret
= SUCCESS_SUCCESS
;
193 HeapFree( GetProcessHeap(), 0, to
);
194 HeapFree( GetProcessHeap(), 0, cc
);
195 HeapFree( GetProcessHeap(), 0, bcc
);
196 HeapFree( GetProcessHeap(), 0, mailto
);
197 HeapFree( GetProcessHeap(), 0, escape
);