31.03.2003, 12:35 | #1 |
----------------
|
MAPI трабл
При попытке послать письмо из Аксапты (отчет почтой и из кода) получается такая ошибка:
Ошибка почтовой службы: Тип получателя не равен MAPI_TO, MAPI_CC или MAPI_BCC. Сообщение не послано В качестве почтового клиента используется Outlook Express. Как это можно побороть? |
|
31.03.2003, 13:04 | #2 |
----------------
|
technet
http://technet.navision.com/workspac...tribId=1&wso=1
Цитата:
...
I debugged the code and found, that the problem is in \Classes\SysINetMail\sendMailAttach. If I add the following code everything works just fine, but I don't think, that this is the correct solution. Has anybody experienced the same? if (!receiver) { receiver = new MapiRecipDesc(); receiver.recipClass(#MAPI_TO); receiver.name("@SYS50902"); sendType = #MAPI_DIALOG; } else { // USR-Modification on 23 Jan 2001 by Admin - Begin if (receiver.recipClass() == 0) receiver.recipClass(#MAPI_TO); // USR-Modification on 23 Jan 2001 by Admin - End |
|