-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuMail.pas
187 lines (162 loc) · 5.16 KB
/
uMail.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
unit uMail;
interface
uses
SysUtils, Classes, IdBaseComponent, IdAntiFreezeBase, IdAntiFreeze, DBClient,
IdMessage, IdComponent, IdTCPConnection, IdTCPClient, IdMessageClient, IdSMTP,
IdSSLOpenSSL, IdAttachmentFile, dialogs;
type
TMailMessage = class(TPersistent)
private
FTitulo: String;
FLines: TStrings;
procedure SetLines(const Value: TStrings);
protected
public
constructor Create(AOwner : TComponent);
destructor Destroy;override;
procedure Assign(Source : TPersistent);override;
published
property Titulo : String read FTitulo write FTitulo;
property Mensagem : TStrings read FLines write SetLines;
end;
type
TMailUserControl = class(TComponent)
private
FEmailRemetente: String;
FUsuario: String;
FNomeRemetente: String;
FSenha: String;
FSMTPServer: String;
FAdicionaMensagem: TMailMessage;
FIdAntiFreeze : TIdAntiFreeze;
function ParseMailMSG( Nome, Email, txt : String) : String;
protected
procedure EnviaEmail(Nome, Email: String; UCMSG: TMailMessage);
public
constructor Create(AOwner : TComponent); override;
procedure EnviaEmailXML(NomeDestinatario, EmailDestinatario: String);
published
property ServidorSMTP: String read FSMTPServer write FSMTPServer;
property Usuario: String read FUsuario write FUsuario;
property Senha: String read FSenha write FSenha;
property NomeRemetente: String read FNomeRemetente write FNomeRemetente;
property EmailRemetente: String read FEmailRemetente write FEmailRemetente;
property AdicionaMensagem: TMailMessage read FAdicionaMensagem write FAdicionaMensagem;
end;
implementation
uses uDm;
{ TMailAdicUsuario }
procedure TMailMessage.Assign(Source: TPersistent);
begin
if Source is TMailMessage then
begin
Self.Titulo := TMailMessage(Source).Titulo;
Self.Mensagem.Assign(TMailMessage(Source).Mensagem);
end
else
inherited;
end;
constructor TMailMessage.Create(AOwner: TComponent);
begin
FLines := TStringList.Create;
end;
destructor TMailMessage.Destroy;
begin
inherited;
end;
procedure TMailMessage.SetLines(const Value: TStrings);
begin
FLines.Assign(Value);
end;
{ TMailUserControl }
constructor TMailUserControl.Create(AOwner: TComponent);
begin
inherited;
AdicionaMensagem := TMailMessage.Create(self);
FIdAntiFreeze := TIdAntiFreeze.Create(Self);
FIdAntiFreeze.Active := True;
end;
procedure TMailUserControl.EnviaEmailXML(NomeDestinatario, EmailDestinatario: String);
begin
EnviaEmail(NomeDestinatario, EmailDestinatario, AdicionaMensagem);
end;
function TMailUserControl.ParseMailMSG( Nome, Email, txt : String) : String;
begin
Txt := StringReplace(txt, ':nome', Nome, [rfReplaceAll]);
Txt := StringReplace(txt, ':email', Email, [rfReplaceAll]);
Result := Txt;
end;
procedure TMailUserControl.EnviaEmail(Nome, Email: String; UCMSG: TMailMessage);
var
MailSSL: TIdSSLIOHandlerSocketOpenSSL;
MailMSG: TIdMessage;
MailSMTP: TIdSMTP;
begin
MailSSL := TIdSSLIOHandlerSocketOpenSSL.Create(Self);
MailSMTP := TIdSMTP.Create(Self);
MailMSG := TIdMessage.Create(Self);
try
// Configuração do SSL
MailSSL.SSLOptions.Method := sslvSSLv23;
MailSSL.SSLOptions.Mode := sslmClient;
// Configuração do SMTP
MailSMTP.IOHandler := MailSSL;
MailSMTP.Host := ServidorSMTP;
MailSMTP.Port := 587;
{$IFDEF VER140}
MailSMTP.UserID := Usuario;
{$ENDIF}
{$IFDEF VER150}
MailSMTP.Username := Usuario;
{$ENDIF}
if (Senha <> EmptyStr) then
begin
MailSMTP.Password := Senha;
end;
// Tentativa de conexão e autenticação
try
MailSMTP.Connect;
MailSMTP.Authenticate;
except
on E:Exception do
begin
MessageDlg('Erro na conexão e/ou autenticação: ' +
E.Message, mtWarning, [mbOK], 0);
Exit;
end;
end;
// Configuração da mensagem
MailMSG.From.Address := EmailRemetente;
MailMSG.From.Name := NomeRemetente;
MailMSG.From.Text := NomeRemetente + ' <' + EmailRemetente + '>';
with MailMSG.Recipients.Add do
begin
Address := Email;
Name := Nome;
Text := Nome + ' <' + Email + '>';
end;
MailMSG.Subject := UCMSG.Titulo;
MailMSG.Body.Text := ParseMailMSG(Nome, Email, UCMSG.Mensagem.Text);
// Anexo da mensagem (opcional)
if FileExists(XML_PATH) then
TIdAttachmentFile.Create(MailMSG.MessageParts, XML_PATH);
// Envio da mensagem
try
MailSMTP.Send(MailMSG);
MessageDlg('Mensagem enviada com sucesso.', mtInformation, [mbOK], 0);
except
On E:Exception do
MessageDlg('Erro ao enviar a mensagem: ' +
E.Message, mtWarning, [mbOK], 0);
end;
finally
// desfazer a conexão
if (MailSMTP.Connected) then
MailSMTP.Disconnect;
// liberação dos objetos da memória
FreeAndNil(MailMSG);
FreeAndNil(MailSSL);
FreeAndNil(MailSMTP);
end;
end;
end.