From a9cafc90daa5f4296473899f19398948bd6e4a24 Mon Sep 17 00:00:00 2001 From: Valentin CZERYBA Date: Mon, 30 May 2022 23:13:58 +0200 Subject: [PATCH] config mail --- pom.xml | 4 ++++ src/main/resources/application.properties | 10 +++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7956250..f15c87c 100644 --- a/pom.xml +++ b/pom.xml @@ -68,6 +68,10 @@ io.quarkus quarkus-mailer + + io.quarkus + quarkus-resteasy-mutiny + io.quarkus quarkus-junit5 diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 2d02a15..69c99b0 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -11,4 +11,12 @@ quarkus.datasource.jdbc.url = jdbc:postgresql://localhost:5432/toto # drop and create the database at startup (use `update` to only update the schema) quarkus.hibernate-orm.database.generation = drop-and-create -covas.schema.create = true \ No newline at end of file +covas.schema.create = true + +quarkus.mailer.auth-methods=DIGEST-MD5 CRAM-SHA256 CRAM-SHA1 CRAM-MD5 PLAIN LOGIN +quarkus.mailer.from=valczebackup@gmail.com +quarkus.mailer.host=smtp.gmail.com +quarkus.mailer.port=465 +quarkus.mailer.ssl=true +quarkus.mailer.username=valczebackup@gmail.com +quarkus.mailer.password=aohrpmqvxldwyebs \ No newline at end of file