Skip to content

Commit b8e76d7

Browse files
V3.0.1 fix/chore (#7)
Pequeno ajuste necessário no tempo de timeout
1 parent 80f4f1c commit b8e76d7

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ e este projeto adere ao [Semantic Versioning](https://semver.org/lang/pt-BR/).
88

99
---
1010

11+
12+
## [3.0.1] - 2026-02-26
13+
14+
- Chore: Ajuste de timeout
15+
16+
17+
1118
## [3.0.0] - 2026-02-25
1219

1320
### Adicionado

ControleContatos/Services/EmailSenderSmtp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public async Task SendEmailAsync(string toEmail, string subject, string htmlBody
5555
client.Credentials = new NetworkCredential(_settings.User, _settings.Password);
5656
client.EnableSsl = _settings.UseSsl;
5757
client.DeliveryMethod = SmtpDeliveryMethod.Network;
58-
client.Timeout = 15_000; // 15s
58+
client.Timeout = 60_000;
5959

6060
await client.SendMailAsync(message);
6161

0 commit comments

Comments
 (0)