Skip to content

Commit 5848b1e

Browse files
authored
feat(tem): add smtp constants (#1637)
1 parent a13b691 commit 5848b1e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

api/tem/v1alpha1/tem_utils.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ import (
1111
const (
1212
defaultTimeout = 5 * time.Minute
1313
defaultRetryInterval = 15 * time.Second
14+
15+
SMTPHost = "smtp.tem.scw.cloud"
16+
SMTPPortUnsecure = 25
17+
SMTPPort = 587
18+
SMTPPortAlternative = 2587
19+
SMTPSPort = 465
20+
SMTPSPortAlternative = 2465
1421
)
1522

1623
// WaitForDomainRequest is used by WaitForDomain method

0 commit comments

Comments
 (0)