-
Notifications
You must be signed in to change notification settings - Fork 84
/
Quick.Logger.Provider.Email.pas
165 lines (137 loc) · 4.54 KB
/
Quick.Logger.Provider.Email.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
{ ***************************************************************************
Copyright (c) 2016-2020 Kike Pérez
Unit : Quick.Logger.Provider.Email
Description : Log Email Provider
Author : Kike Pérez
Version : 1.24
Created : 15/10/2017
Modified : 24/04/2020
This file is part of QuickLogger: https://github.com/exilon/QuickLogger
***************************************************************************
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*************************************************************************** }
unit Quick.Logger.Provider.Email;
{$i QuickLib.inc}
interface
uses
Classes,
SysUtils,
Quick.Commons,
Quick.SMTP,
Quick.Logger;
type
{$M+}
TSMTPConfig = class
private
fHost : string;
fPort : Integer;
fUserName : string;
fPassword : string;
fServerAuth : Boolean;
fUseSSL : Boolean;
published
property Host : string read fHost write fHost;
property Port : Integer read fPort write fPort;
property UserName : string read fUserName write fUserName;
property Password : string read fPassword write fPassword;
property ServerAuth : Boolean read fServerAuth write fServerAuth;
property UseSSL : Boolean read fUseSSL write fUseSSL;
end;
{$M-}
{$M+}
TMailConfig = class
private
fSenderName : string;
fFrom : string;
fRecipient : string;
fSubject : string;
fBody : string;
fCC : string;
fBCC : string;
published
property SenderName : string read fSenderName write fSenderName;
property From : string read fFrom write fFrom;
property Recipient : string read fRecipient write fRecipient;
property Subject : string read fSubject write fSubject;
property Body : string read fBody write fBody;
property CC : string read fCC write fCC;
property BCC : string read fBCC write fBCC;
end;
{$M-}
TLogEmailProvider = class (TLogProviderBase)
private
fSMTP : TSMTP;
fMail : TMailMessage;
fSMTPConfig : TSMTPConfig;
fMailConfig : TMailConfig;
public
constructor Create; override;
destructor Destroy; override;
property SMTP : TSMTPConfig read fSMTPConfig write fSMTPConfig;
property Mail : TMailConfig read fMailConfig write fMailConfig;
procedure Init; override;
procedure Restart; override;
procedure WriteLog(cLogItem : TLogItem); override;
end;
var
GlobalLogEmailProvider : TLogEmailProvider;
implementation
constructor TLogEmailProvider.Create;
begin
inherited;
LogLevel := LOG_ALL;
fSMTPConfig := TSMTPConfig.Create;
fMailConfig := TMailConfig.Create;
fSMTP := TSMTP.Create;
IncludedInfo := [iiAppName,iiHost,iiUserName,iiOSVersion];
end;
destructor TLogEmailProvider.Destroy;
begin
fMail := nil;
if Assigned(fSMTP) then fSMTP.Free;
if Assigned(fSMTPConfig) then fSMTPConfig.Free;
if Assigned(fMailConfig) then fMailConfig.Free;
inherited;
end;
procedure TLogEmailProvider.Init;
begin
inherited;
fSMTP.Host := fSMTPConfig.Host;
fSMTP.Port := fSMTPConfig.Port;
fSMTP.Username := fSMTPConfig.UserName;
fSMTP.Password := fSMTPConfig.Password;
fSMTP.ServerAuth := fSMTPConfig.ServerAuth;
fSMTP.UseSSL := fSMTPConfig.UseSSL;
fSMTP.Mail.SenderName := fMailConfig.SenderName;
fSMTP.Mail.From := fMailConfig.From;
fSMTP.Mail.Recipient := fMailConfig.Recipient;
fSMTP.Mail.Subject := fMailConfig.Subject;
fSMTP.Mail.Body := fMailConfig.Body;
fSMTP.Mail.CC := fMailConfig.CC;
fSMTP.Mail.BCC := fMailConfig.BCC;
end;
procedure TLogEmailProvider.Restart;
begin
Stop;
Init;
end;
procedure TLogEmailProvider.WriteLog(cLogItem : TLogItem);
begin
if fSMTP.Mail.Subject = '' then fSMTP.Mail.Subject := Format('%s [%s] %s',[SystemInfo.AppName,EventTypeName[cLogItem.EventType],Copy(cLogItem.Msg,1,50)]);
if CustomMsgOutput then fSMTP.Mail.Body := LogItemToFormat(cLogItem)
else fSMTP.Mail.Body := LogItemToHtml(cLogItem);
fSMTP.SendMail;
end;
initialization
GlobalLogEmailProvider := TLogEmailProvider.Create;
finalization
if Assigned(GlobalLogEmailProvider) and (GlobalLogEmailProvider.RefCount = 0) then GlobalLogEmailProvider.Free;
end.