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

Вниз

Как отправить E-mail.   Найти похожие ветки 

 
wandp ©   (2002-11-14 04:57) [0]

Помогите как можно отправить E-mail по определенному адресу, по нажатию допустим по Button"у, а текст чтобы брался с Memo?


 
Song ©   (2002-11-14 17:46) [1]

ShellExecute()
TNMSMTP
MAPI


 
Александр Павлов ©   (2002-11-15 06:31) [2]

function SendEmail(const RecipName, RecipAddress, Subject, Attachment: string): Boolean;
var MapiMessage: TMapiMessage;
MapiFileDesc: TMapiFileDesc;
MapiRecipDesc: TMapiRecipDesc;
i: integer;
s: string;
begin
with MapiRecipDesc do
begin
ulReserved:= 0;
ulRecipClass:= MAPI_TO;
lpszName:= PChar(RecipName);
ulEIDSize:= 0;
lpEntryID:= nil;
end;
with MapiFileDesc do
begin
ulReserved:= 0;
flFlags:= 0;
nPosition:= 0;
lpszPathName:= PChar(Attachment);
lpszFileName:= nil;
lpFileType:= nil;
end;
with MapiMessage do
begin
ulReserved := 0;
lpszSubject := nil;
lpszNoteText := PChar(Subject);
lpszMessageType := nil;
lpszDateReceived := nil;
lpszConversationID := nil;
flFlags := 0;
lpOriginator := nil;
nRecipCount := 1;
lpRecips := @MapiRecipDesc;
if length(Attachment) > 0 then
begin
nFileCount:= 1;
lpFiles := @MapiFileDesc;
end else
begin
nFileCount:= 0;
lpFiles:= nil;
end;
end;
result:=MapiSendMail(0, 0, MapiMessage, MAPI_DIALOG or MAPI_LOGON_UI or MAPI_NEW_SESSION, 0) = SUCCESS_SUCCESS;
end;



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

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

Наверх




Память: 0.47 MB
Время: 0.019 c
7-99385
evgen_2001
2002-10-24 12:47
2002.12.30
Команда модему.


3-98992
OutSidEr
2002-12-09 12:39
2002.12.30
Непонятки с INSERT.


3-98976
Calm
2002-12-10 10:17
2002.12.30
Почему не отображаются значения полей?


1-99048
Balkon
2002-12-19 11:47
2002.12.30
SHBrowseForFolder и кнопарь New


1-99125
Ольга
2002-12-16 16:59
2002.12.30
DBChart