Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
Lazarus Extra Components
»
the package for send and recive email in Lazarus
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
IRC channel
Latest SVN
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
A different Build Mode Op...
by
lucamar
[
Today
at 02:46:26 am]
open source big projects
by
Martin_fr
[
Today
at 02:32:25 am]
TStringGrid with stretche...
by
jamie
[
Today
at 12:38:41 am]
MOVED: accounting softwar...
by
trev
[
Today
at 12:20:02 am]
accounting software fpc/L...
by
nummer8
[January 26, 2021, 11:13:17 pm]
Install Delphi 7 3th part...
by
zzzkkk
[January 26, 2021, 10:58:35 pm]
How to show a Label in a ...
by
Abelisto
[January 26, 2021, 10:48:35 pm]
Real time chart
by
wp
[January 26, 2021, 10:24:30 pm]
H2PasWizard wizard fail o...
by
BlueIcaro
[January 26, 2021, 08:47:51 pm]
FFGrab4Laz = How to recor...
by
metis
[January 26, 2021, 07:43:29 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: the package for send and recive email in Lazarus (Read 1148 times)
RandyCuba
Newbie
Posts: 1
the package for send and recive email in Lazarus
«
on:
October 23, 2019, 03:03:07 am »
I need someone to give me a page that is not restricted to my country (Cuba), where I can download packages for Lazarus Free Pascal, including the one that allows me to send email in Lazarus applications
Logged
krexon
Jr. Member
Posts: 72
Re: the package for send and recive email in Lazarus
«
Reply #1 on:
October 23, 2019, 08:32:20 am »
You can use i.e. xmailer, Indy, Synapse.
Logged
madref
Hero Member
Posts: 830
..... A day not Laughed is a day wasted !!
Re: the package for send and recive email in Lazarus
«
Reply #2 on:
January 13, 2020, 06:19:43 am »
Or use this:
Code: Pascal
[Select]
[+]
[-]
function
VerzendMailMetBijlage
(
Const
MailAan
,
Onderwerp
:
String
;
Inhoud
:
TStrings
;
Bijlage
:
String
)
:
Boolean
;
Var
Mime
:
TMimeMess
;
P
:
TMimePart
;
B
:
Boolean
;
begin
Mime
:
=
TMimeMess
.
Create
;
try
Mime
.
Header
.
ToList
.
Text
:
=
MailAan
;
Mime
.
Header
.
ReplyTo
:
=
SenderName
+
'<'
+
SenderEMail
+
'>'
;
Mime
.
Header
.
Subject
:
=
Onderwerp
;
Mime
.
Header
.
From
:
=
SenderName
+
'<'
+
SenderEMail
+
'>'
;
P
:
=
Mime
.
AddPartMultipart
(
'mixed'
,
Nil
)
;
Mime
.
AddPartHTML
(
Inhoud
,
P
)
;
Mime
.
AddPartBinaryFromFile
(
Bijlage
,
P
)
;
Mime
.
EncodeMessage
;
B
:
=
SendToRaw
(
SenderName
+
'<'
+
SenderEMail
+
'>'
,
MailAan
,
smtpHost
,
Mime
.
Lines
,
smtpUser
,
smtpPassword
)
;
Result
:
=
B
;
finally
Mime
.
Free
;
end
;
end
;
Logged
You treat a disease, you win, you lose.
You treat a person and I guarantee you, you win, no matter the outcome.
Lazarus 2.0.6 / FPC 3.0.4
Lazarus Trunc / FPC Trunc
Mac OS X Mojave
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
Lazarus Extra Components
»
the package for send and recive email in Lazarus
TinyPortal
© 2005-2018