Skip to content

Commit

Permalink
Fixed sending error
Browse files Browse the repository at this point in the history
  • Loading branch information
dliocode committed Jun 7, 2022
1 parent 7856959 commit a40c667
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SendEmail.pas
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ constructor TSendEmail.Create;

with FIdSMTP do
begin
MailAgent := 'SendEmail-https://github.com/dliocode/sendemail';
MailAgent := 'SendEmail';
ConnectTimeout := 60000;
ReadTimeout := 60000;
UseEhlo := True;
HeloName := 'SendEmail-https://github.com/dliocode/sendemail';
HeloName := 'SendEmail';
OnStatus := LogSMTPStatus;
OnWorkBegin := WorkBegin;
OnWork := Work;
Expand Down

0 comments on commit a40c667

Please sign in to comment.