Commit d2cf0908 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winemapi: List ignored attachments.

parent 20128a92
......@@ -155,7 +155,12 @@ ULONG WINAPI MAPISendMail(LHANDLE session, ULONG_PTR uiparam,
}
if (message->nFileCount)
FIXME("Ignoring attachments\n");
{
FIXME("Ignoring %u attachments:\n", message->nFileCount);
for (i = 0; i < message->nFileCount; i++)
FIXME("\t%s (%s)\n", debugstr_a(message->lpFiles[i].lpszPathName),
debugstr_a(message->lpFiles[i].lpszFileName));
}
/* Escape subject and body */
subject = escape_string(message->lpszSubject, empty_string);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment