We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c0587d commit e0b78e3Copy full SHA for e0b78e3
build.gradle
@@ -47,6 +47,9 @@ dependencies {
47
48
//.env
49
implementation 'io.github.cdimascio:java-dotenv:5.2.2'
50
+
51
+ // email
52
+ implementation 'org.springframework.boot:spring-boot-starter-mail'
53
}
54
55
dependencyManagement {
src/main/resources/application.yml
@@ -27,6 +27,20 @@ spring:
27
gcp:
28
credentials:
29
location: ${GOOGLE_APPLICATION_CREDENTIALS}
30
+ mail:
31
+ host: smtp.gmail.com
32
+ port: 587
33
+ username: ${MAIL_USERNAME}
34
+ password: ${MAIL_PASSWORD}
35
+ properties:
36
37
+ smtp:
38
+ auth: true
39
+ timeout: 5000
40
+ ssl: false
41
+ starttls:
42
+ enable: true
43
+ required: true
44
45
ai:
46
gemini:
0 commit comments