You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`MAIL_HOST`| The smtp server host (e.g. smtp.gmail.com) |
75
+
|`MAIL_PASSWORD`| The password to authenticate against the mail server |
76
+
|`Mail_USERNAME`| The username to authenticate against the mail server |
77
+
78
+
```properties
79
+
spring.mail.username=${MAIL_USERNAME}
80
+
spring.mail.password=${MAIL_PASSWORD}
81
+
spring.mail.host=${MAIL_HOST:smtp.gmail.com}
82
+
spring.mail.port=${MAIL_PORT:587}
83
+
```
84
+
26
85
## Project structure
27
86
28
87
-`MainLayout.java` in `src/main/java` contains the navigation setup (i.e., the
@@ -36,12 +95,18 @@ Once the JAR file is built, you can run it using
36
95
37
96
- Read the documentation at [vaadin.com/docs](https://vaadin.com/docs).
38
97
- Follow the tutorials at [vaadin.com/tutorials](https://vaadin.com/tutorials).
39
-
- Watch training videos and get certified at [vaadin.com/learn/training](https://vaadin.com/learn/training).
98
+
- Watch training videos and get certified
99
+
at [vaadin.com/learn/training](https://vaadin.com/learn/training).
40
100
- Create new projects at [start.vaadin.com](https://start.vaadin.com/).
41
-
- Search UI components and their usage examples at [vaadin.com/components](https://vaadin.com/components).
42
-
- View use case applications that demonstrate Vaadin capabilities at [vaadin.com/examples-and-demos](https://vaadin.com/examples-and-demos).
43
-
- Discover Vaadin's set of CSS utility classes that enable building any UI without custom CSS in the [docs](https://vaadin.com/docs/latest/ds/foundation/utility-classes).
44
-
- Find a collection of solutions to common use cases in [Vaadin Cookbook](https://cookbook.vaadin.com/).
101
+
- Search UI components and their usage examples
102
+
at [vaadin.com/components](https://vaadin.com/components).
103
+
- View use case applications that demonstrate Vaadin capabilities
104
+
at [vaadin.com/examples-and-demos](https://vaadin.com/examples-and-demos).
105
+
- Discover Vaadin's set of CSS utility classes that enable building any UI without custom CSS in
106
+
the [docs](https://vaadin.com/docs/latest/ds/foundation/utility-classes).
107
+
- Find a collection of solutions to common use cases
108
+
in [Vaadin Cookbook](https://cookbook.vaadin.com/).
45
109
- Find Add-ons at [vaadin.com/directory](https://vaadin.com/directory).
46
-
- Ask questions on [Stack Overflow](https://stackoverflow.com/questions/tagged/vaadin) or join our [Discord channel](https://discord.gg/MYFq5RTbBn).
110
+
- Ask questions on [Stack Overflow](https://stackoverflow.com/questions/tagged/vaadin) or join
0 commit comments