No video

Send Emails with Spring Boot

  Рет қаралды 27,940

Get Arrays

Get Arrays

Күн бұрын

Пікірлер: 73
@ashishranjankumar949
@ashishranjankumar949 5 ай бұрын
There is a lot to learn from your style of coding. I really love your videos and channel. Way to go brother. Keep up the excellent work. It helps to implement the concepts in our own projects. Once again, thank you so much !!
@GetArrays
@GetArrays 5 ай бұрын
Thanks a lot!
@jwlioCesar
@jwlioCesar 4 ай бұрын
Thank you so much for this content.
@GetArrays
@GetArrays 4 ай бұрын
Glad you enjoy it!
@bijaypandey20
@bijaypandey20 Жыл бұрын
Great way of explaining things.......! Thanks for this video, it really helped a lot ❤
@errahulrajocjp
@errahulrajocjp 7 ай бұрын
you are genious, Sir 🔥
@ferrisgamer7457
@ferrisgamer7457 10 ай бұрын
Wowww thats amazing, the content u gave us, really nice, thank u!
@GetArrays
@GetArrays 10 ай бұрын
You’re welcome
@ShermukhammadKarimov
@ShermukhammadKarimov Ай бұрын
thanks for this amazing project
@darlingtonolelewe1212
@darlingtonolelewe1212 Жыл бұрын
Perfectly made course. Thank you
@GetArrays
@GetArrays Жыл бұрын
You're very welcome!
@careduvir
@careduvir 9 ай бұрын
Thanks!!! Great explanation
@obakengmorobane3708
@obakengmorobane3708 3 ай бұрын
Thanks a lot for the video, it is really educational
@GetArrays
@GetArrays 3 ай бұрын
Glad it was helpful!
@hassansaid2518
@hassansaid2518 Жыл бұрын
Thank you, course very good and useful
@user-pz4sy3tc2j
@user-pz4sy3tc2j 9 ай бұрын
incredible, thank you very much for sharing your knowledge
@GetArrays
@GetArrays 9 ай бұрын
You’re welcome
@tomaszw6449
@tomaszw6449 10 ай бұрын
Big thumbs up!
@seydinand18
@seydinand18 Ай бұрын
thank's 🙏🏾
@Ali-tm7ly
@Ali-tm7ly Жыл бұрын
Great work!
@GetArrays
@GetArrays Жыл бұрын
Thanks!
@xiannaandreicabana8433
@xiannaandreicabana8433 2 ай бұрын
Thank you so much
@GetArrays
@GetArrays 2 ай бұрын
You’re welcome
@yusufozcelik4634
@yusufozcelik4634 Жыл бұрын
Hi , can u make a video about spring security6 and spring boot 3.x.x.How to make a jwt token, refresh token etc. I like your series thank u :)
@AnilReddyAtoZ
@AnilReddyAtoZ Жыл бұрын
I need to know, thanks for asking
@GetArrays
@GetArrays Жыл бұрын
Yea it’s in the works actually
@user-jd8sn2zf8g
@user-jd8sn2zf8g Жыл бұрын
Thank you course, very very useful !
@GetArrays
@GetArrays Жыл бұрын
You are welcome!
@redeye2461
@redeye2461 23 күн бұрын
Hello Thanks for this video very helpful for me And i also like to know which theme did you use in intellij ide I really like it Again thanks a lot ❤😊
@GetArrays
@GetArrays 23 күн бұрын
Dracula.
@-Altera-
@-Altera- 10 ай бұрын
How would you send a timed/scheduled email at a specific date-time? So for example, if you have a database that has stored information on a specific date and time (e.g. for a task of some sort), how would you send an email to a recipient (responsible for that task) let's say 24 hours before that date-time value. This date-time could be an upcoming appointment or a deadline and the email should remind the recipient of this 24 hours prior that date-time. For simplification, let's say that a database table has the following columns: name, emailAddress, taskName, date-time. The software would then based on the email and date-time values of the row same row send a mail to the email address 24 hours prior to the date-time value. A tutorial or something of the like would be nice but I appreciate any response to the question :).
@GetArrays
@GetArrays 10 ай бұрын
CRON job. Get the data from the database based on a status. Send the email. Spring Boot makes it very easy to do that with a scheduler.
@-Altera-
@-Altera- 10 ай бұрын
@@GetArrays Alright, I'll look into that. Thank you for the reply :).
@literature.lover123
@literature.lover123 Ай бұрын
I had an error with the enum EmailTemplateName because I got an error about Thymeleaf not finding the template. The problem is that the enum will give the name in upper case ACTIVATE_ACCOUNT and not activate_account. I deleted the enum and passed as string. I don't understand why is working at your case.
@chengxiong5892
@chengxiong5892 Жыл бұрын
Great and thank you for sharing this course.
@joelchabzola8870
@joelchabzola8870 Жыл бұрын
Thanks for sharing.
@GetArrays
@GetArrays Жыл бұрын
Thanks for watching!
@joelravanely8914
@joelravanely8914 Жыл бұрын
Thank you
@oh_hi_mars
@oh_hi_mars 7 ай бұрын
Greate video. Thanks
@creativevn2924
@creativevn2924 9 ай бұрын
thank you so much
@Matlaps123
@Matlaps123 9 ай бұрын
Fabulous video as always. Is there a way to make the HTML template without using Thymeleaf? I am not sure I am making sense right now but I want to keep the footprint of the JAR small. Is it possible to use vanilla HTML and CSS? Or do we now lack the model?
@GetArrays
@GetArrays 9 ай бұрын
You can use inline HTML. Basically a very long string that has both HTML and your message, being passed as the message string. Something like: “Hello Workd” as the message. If you use the JavaMailSender to create the mine message, with the helper from the mine message, you can pass a boolean to indicate that it’s HTML
@GetArrays
@GetArrays 9 ай бұрын
The MineMessage has a similar method that take an encoding. So set the encoding to “text/html”
@JulioCesar-Arc
@JulioCesar-Arc 4 ай бұрын
16:43 Why do you create a service and then implement its methods, when you can already implement it in the same service? Sincere question, don't get me wrong.
@PJay-ns3eh
@PJay-ns3eh 4 ай бұрын
We are following the SOLID principles. Read more on that
@GetArrays
@GetArrays 4 ай бұрын
Also mean you can implement the service as many times as you like. For example, you can use a mock service implementation that uses mock data for testing, and them use another implementation of that service in production. This way you only have to change a simple thing, a bean name, instead of changing all the methods
@user-lj4nn7cj7q
@user-lj4nn7cj7q Жыл бұрын
can u please make a video with spring boot and angular with autentification and autorization?
@GetArrays
@GetArrays Жыл бұрын
Coming soon
@deeplife9654
@deeplife9654 5 ай бұрын
Thanks for not uploading a hello world example 😂😂😂
@GetArrays
@GetArrays 5 ай бұрын
lol you got it
@krasser650
@krasser650 4 ай бұрын
As of today, it is no longer possible to generate a password for an app with two-step authentication. What to do in this case?
@GetArrays
@GetArrays 3 ай бұрын
Just google what the new process is.
@krasser650
@krasser650 3 ай бұрын
@@GetArrays If I understand you correctly, you don't have an answer to my question?
@Herman-mq3dp
@Herman-mq3dp 8 ай бұрын
will this work also on live server?
@dareSh0
@dareSh0 11 ай бұрын
Does anybody know a good resource for figuring out how theese custom properties work? Specifically, why they have to be declared in one yml file and used in another? Can it be done in one application_properties? 52:53 and 57:50
@GetArrays
@GetArrays 10 ай бұрын
It doesn't have to be this way. I showed this setup in case you have different environment. You might not see why this is important but once you need to deploy the application you will understand how crucial this is.
@SAMM3314
@SAMM3314 8 ай бұрын
I get cors error and 401
@aliksargsyan2782
@aliksargsyan2782 Жыл бұрын
If we transform EmailUtis class into abstract class will it work?
@GetArrays
@GetArrays Жыл бұрын
Nope it won’t
@aliksargsyan2782
@aliksargsyan2782 Жыл бұрын
@@GetArrays ok 👌 my friend. Thanks
@mithleshkumar-bb4jr
@mithleshkumar-bb4jr 3 ай бұрын
Sir please help me app password option is not showing 😢😢
@GetArrays
@GetArrays 3 ай бұрын
I think there has been a change from Google recently and I don't know what the new process is yet. But use a different mail server.
@mithleshkumar-bb4jr
@mithleshkumar-bb4jr 3 ай бұрын
@@GetArrays resolved sir
@sidof8065
@sidof8065 Жыл бұрын
Hi sir I have this error since that i'm try to implement send email Parameter 0 of constructor in com.sidof.security.mail.EmailServiceImpl required a bean of type 'org.springframework.mail.javamail.JavaMailSender' that could not be found.
@lunatichigh2896
@lunatichigh2896 11 ай бұрын
The values from the properties file are not binding, we have the same issue. I just hardcoded the values in the service class
@sidof8065
@sidof8065 11 ай бұрын
@@lunatichigh2896 yes it was the problem I have solve it since. Thanks
@rouaroua9952
@rouaroua9952 11 ай бұрын
@Get Arrays
Java Spring Boot Email Sender Service Tutorial
23:04
Ivan Jakimovski
Рет қаралды 23 М.
Parenting hacks and gadgets against mosquitoes 🦟👶
00:21
Let's GLOW!
Рет қаралды 12 МЛН
managed to catch #tiktok
00:16
Анастасия Тарасова
Рет қаралды 38 МЛН
Running With Bigger And Bigger Feastables
00:17
MrBeast
Рет қаралды 123 МЛН
لااا! هذه البرتقالة مزعجة جدًا #قصير
00:15
One More Arabic
Рет қаралды 51 МЛН
Spring Boot API with Spring Security and Docker
3:01:33
Get Arrays
Рет қаралды 16 М.
Spring Data JPA Pagination with Angular
2:30:17
Get Arrays
Рет қаралды 21 М.
How This New Battery is Changing the Game
12:07
Undecided with Matt Ferrell
Рет қаралды 155 М.
Send Email Using Spring Boot | Gmail SMTP | Java Mail Sender
7:44
Code With Arjun
Рет қаралды 157 М.
How to build a NodeJs API with MySQL and Docker
3:26:17
Get Arrays
Рет қаралды 12 М.
Full Stack ReactJS with Spring Boot
3:05:46
Get Arrays
Рет қаралды 47 М.
Parenting hacks and gadgets against mosquitoes 🦟👶
00:21
Let's GLOW!
Рет қаралды 12 МЛН