Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2002.11.11;
Скачать: CL | DM;

Вниз

Люди помогите плиз с MAPI !!!!!!!!!!   Найти похожие ветки 

 
X-shadow ©   (2002-10-31 18:16) [0]


Помогите пожалуйста написать письмо из Mapi.
Просто как заполнить поля и все такое


 
X-shadow ©   (2002-10-31 18:23) [1]

Вот это помогите обработать

function SendMail(const From, Dest, Subject, Text, FileName: PChar):
Integer;
var
Message: TMapiMessage;
Recipient, Sender: TMapiRecipDesc;
File_Attachment: TMapiFileDesc;

function MakeMessage: TMapiMessage;
begin
FillChar(Sender, SizeOf(Sender), 0);
Sender.ulRecipClass := MAPI_ORIG;
Sender.lpszAddress := From;

FillChar(Recipient, SizeOf(Recipient), 0);
Recipient.ulRecipClass := MAPI_TO;
Recipient.lpszAddress := Dest;

FillChar(File_Attachment, SizeOf(File_Attachment), 0);
File_Attachment.nPosition := ULONG(-1);
File_Attachment.lpszPathName := FileName;

FillChar(Result, SizeOf(Result), 0);
with Message do begin
lpszSubject := Subject;
lpszNoteText := Text;
lpOriginator := @Sender;
nRecipCount := 1;
lpRecips := @Recipient;
nFileCount := 1;
lpFiles := @File_Attachment;
end;
end;

var
SM: TFNMapiSendMail;
MAPIModule: HModule;
begin
MAPIModule := LoadLibrary(PChar(MAPIDLL));
if MAPIModule = 0 then
Result := -1
else
try
@SM := GetProcAddress(MAPIModule, "MAPISendMail");
if @SM <> nil then begin
MakeMessage;
Result := SM(0, 0, Message, 0, 0);
end else Result := 1;
finally
FreeLibrary(MAPIModule);
end;
end;



Страницы: 1 вся ветка

Текущий архив: 2002.11.11;
Скачать: CL | DM;

Наверх




Память: 0.46 MB
Время: 0.018 c
14-34212
Сатир
2002-10-22 19:11
2002.11.11
Пpоект Genesis (из коpпоpативной пеpеписки)


1-34013
Anar
2002-10-30 16:30
2002.11.11
Параметры запуска


1-34060
крот
2002-10-29 18:15
2002.11.11
Отладка


14-34248
Карлсон
2002-10-23 23:18
2002.11.11
ну ваще!


1-34055
Shut
2002-10-29 17:04
2002.11.11
FormStorage