Thanks for also showing the best practice to implement this, like creating IEmailService, DTO etc... that is much more helpful than you think!!! Thanks.
This is great Patrick! Very simple tutorial but is very useful in a practical use case especially if you need automated emails being sent out :) keep them coming
In the first part of the video after connecting the smtp to try out in swagger, I am getting this error when trying out the API in swagger - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
Very good video, is there something that is not clear to me when I send an email using an API, it is not done through an SMTP server? How would it be sent in that case?
I always forget this as well @16:58 I prefer _ for private fields but doing this manually is cumbersome. Just set the C# CodeStyle naming convention for private fields to _camelCase and when you CTRL+. it does it for you
Can this be used with OAuth2? I have a google cloud dev console setup for my app and im able to get and refresh tokens but im not sure how to incorporate that into mailkit
Excellent video Patrick. My question now is how to send emails to clients that would have 2FA enable and less secure app access turned off, that is when the API is now in production. I saw a work around to send emails to Gmail accounts by having to turn 2FA and enable less secure app access which it is feasible in production
It worked for me. BUT you need to setup an 'app password' on your Google Account if using Gmail as smtp. This is a new thing. They have deprecated the 'Less Secure App' feature.
Hi Patrick! Great tutorial. I have a question. I have a Visual Studio solution with the Email service project and a Razor project called Visitors. How can I consume the Email project to send emails from the Visitors project?
Dear Mr. God, Thank you again for existing, the question is, I sent an email with the above structure (which is really perfect), but when I filled the "To" property with a real Gmail as a receiver, it sent it to the sender which is the fake email (generating by the Ethereal). Is it common or did I make a mistake? Thanks in advance Shahab
It might be a restriction by Ethereal to stop you from using their service for production. You can simple use your own proper smtp service and it should be okay.
Hi Patrick I am working on X509Certificate I need to check the revocation of certificate online and offline will help me to that if it is possible make some videos on that
How can this guarantee that all the emails with attachments will send to the receiver? Is there anything I need to use to get confirmation? reply is greatly appreciated!
patrick god, could you help me, making a video explaining how to save multiple files with inputfile but save them in a local folder and show that local path in the database, it would be very helpful since I've been trying for a long time... with blazor webassembly
Nice video👍 do you have any suggestions on which SMTP server to use in production that is able to work seamlessly with the mailkit package? Gmail , 0365 etc. all require MFA which mailkit doesn't cater for
Exactly what I needed right now! Thanks for your effort! If I could place a wish... I worked through your Udemy course which helped me a lot creating my first app for a friend (work in progress). But as I want to run the backend on a Linux machine I'd like to use EntityFramework with MariaDB instead of MS SQL Server. Is there any chance, you could set up a quick tutorial on that? I'd appreciate it with at least one coffee :)
Seriously, ask chatgpt. If you can find something to guide you alongside it you can probably achieve your goal. It's walked me through so much it's absolutely insane.
Hi Patrick! Everything is working fine, I have made Contact Us form , but the I have got the same email address for the From and the To objects! I would like to achieve after the user gives the input ( From : user email address ) that will be the sender : email.From.Add(MailboxAddress.Parse("user_Input_email")); email.To.Add(MailboxAddress.Parse("receiver_EmailAddress")); I'm getting emails and etc but the Sender and Receiver are the same email address, ( using gmail ). How Can I fix it?
Hello in the Line smtp.Connect("smtp.ethereal.email", 587, MailKit.Security.SecureSocketOptions.StartTls); return this error SslHandshakeException: An error occurred while attempting to establish an SSL or TLS connection. Any idea ? thank you !
🚀 Join the .NET Web Academy with a 30% discount - closing soon!
👉 www.dotnetwebacademy.com/courses/academy?coupon=dnwas23yt
Thank you! I Didn't know how handy this would be!
Great Job! This is the real one for Email Clients.
Thanks for also showing the best practice to implement this, like creating IEmailService, DTO etc... that is much more helpful than you think!!! Thanks.
Perfect as always Mr. God. You bless You.
😅 Thank you!
😂
Thank you a lot, I'm from Brazil and you helped me with this subject. I was having problems with the TSL server. However, now everything makes sense.
oh my god I was literally looking for this 2 days ago, you're a life savior, god bless you!
Glad I could help! Thanks for sharing that. 😁
Lol @ OMG & Life savior puns
Thank you so much ❤, seriously I have no words for you, God bless you
This is great Patrick! Very simple tutorial but is very useful in a practical use case especially if you need automated emails being sent out :) keep them coming
Nice one patrick. Great video!
Thank you! 😊
Hi I am new to your video and just to highlight that your way of talking is more than super actually supeeeeeeeeeeeeer.
BEST PATRICK GOD VIDEO EVER!!!!!!
thank you man i was looking for something like this. keep up the good work.
This is Great!! Loved it
Great video, Patrick! Way to go! :)
Very good and useful explanation❤
Amazing Video
thank you very much Patrick GOD
Thanks, your video help me a lot
THANKS GOD
Really nice explanation..👍🏻
Thank you 🙂
Awesome video par
Thanks so much
I love you Patrick
Thank you for your video. could you please explain or add to the video for sending email with attachments. really thanks.
Thank you dude ✌️
nice work, keep it up.
Thank you so much! 😊
how can we send emails for example gmail adresses?
Thanks a lot!
Welcome! 😊
Patrick is funny its hard not to like him 🤣🤣
Thank you very much! 😁
ANd at @17:08 you use GetSection but _config.GetValue("EmailHost") is much easier to use
_config["EmailHost"] even easier)
your content muaaaaa!!!!!!
U'r the best
Thank you so much! 😊
thanks man!!
In the first part of the video after connecting the smtp to try out in swagger, I am getting this error when trying out the API in swagger - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
Thank God :D
Very nice 👍🏿
Thank you! 😊
Very good video, is there something that is not clear to me when I send an email using an API, it is not done through an SMTP server? How would it be sent in that case?
Thanks for this informative video! I like it :-)
Glad to hear that!
Perfect
I always forget this as well @16:58 I prefer _ for private fields but doing this manually is cumbersome. Just set the C# CodeStyle naming convention for private fields to _camelCase and when you CTRL+. it does it for you
Ditto. Good suggestion.
Nice very helpfull
why do you have same email for both sender and recipient? usually it should be two different emails.
Mailkit doesn't work for WPF app, why? I tried to adapt this implementation to a WPF app but that didn't work.
Thanks bro
So if I implement this. I can purchase a cloud SMTP and hook into that to deliver production worthy emails?
I'm doing instant operations on data using jsonresult. Is there an easier way to do this? can you make a video about it?
Can this be used with OAuth2? I have a google cloud dev console setup for my app and im able to get and refresh tokens but im not sure how to incorporate that into mailkit
Hello! I need to find a solution to send emails in Blazor Webassembly, but I couldn't use this method there. Is there any trick?
Excellent video Patrick. My question now is how to send emails to clients that would have 2FA enable and less secure app access turned off, that is when the API is now in production. I saw a work around to send emails to Gmail accounts by having to turn 2FA and enable less secure app access which it is feasible in production
this is my problem now
cant we use this mail service in MVC project ? i am beginner and dont know why you have to use web API for this
thank
How to receive (sync) emails using Mailkit?
How can I receive mail using mailkit?
For me it's showing System.Net.Sockets.SocketException. I am facing a connection attempt failure. How to fix this?
It worked for me. BUT you need to setup an 'app password' on your Google Account if using Gmail as smtp. This is a new thing. They have deprecated the 'Less Secure App' feature.
what to do exactly in 'app password'?
@@giorgichikovani4129 You have to get an ‘app password’ on your Google Account, and use that in your code instead of your normal Gmail password.
@@HiranLIVE Tnx
how to add attachment in this email structure
Hi Patrick! Great tutorial. I have a question. I have a Visual Studio solution with the Email service project and a Razor project called Visitors. How can I consume the Email project to send emails from the Visitors project?
I have the same question!!!!
There isn't a single video on sending Email with Mailkit using Razor or Blazor....
Could you make a video to share about read write conflict?
God!, interesting
Is it possible to make a get by id request to a table that doesn't have a primary key?
When i try to pass Object (person) i got error like
TypeError : Failed To Execute fetch on Windows Request with get /Head Method cannot have body
what are the chances you could do this using blazor? maybe even radzen blazor?
How to embed image in email using mailkit. Without using bodybuilder any example can give me link
Dear Mr. God,
Thank you again for existing, the question is, I sent an email with the above structure (which is really perfect), but when I filled the "To" property with a real Gmail as a receiver, it sent it to the sender which is the fake email (generating by the Ethereal). Is it common or did I make a mistake?
Thanks in advance
Shahab
That's weird. Maybe you should close your VS and try again
It might be a restriction by Ethereal to stop you from using their service for production. You can simple use your own proper smtp service and it should be okay.
@@has_ali Thank you Hassan.
Me sucedió lo mismo al usar una cuenta de GMAIL, me sale error y no envía el correo. alguna novedad sobre eso.
But I need to send email on Gmail account there it's not work Please guide me 😢
hey Actually i getting 404 error while i am testing my api of send email on postman idn why, is this beacause i am working 3.1?
Great job 👍👏👏
Can you do a video for Blazor Server without API?
Thanks
Hi Patrick how can I use this API in angular
Excellent video! May I ask if I store the email password in appsetting.json is safe if I deploy the app?
dont store it there
@@chips4real1 so what is the good solution, for real deployment?
Hi Patrick I am working on X509Certificate I need to check the revocation of certificate online and offline will help me to that if it is possible make some videos on that
How can this guarantee that all the emails with attachments will send to the receiver? Is there anything I need to use to get confirmation? reply is greatly appreciated!
did u find something ?
Broooooo!
hi, how can I attach files?, I need attach files that are in my wwwroot folder
Can you make video login with google, firebase please
patrick god, could you help me, making a video explaining how to save multiple files with inputfile but save them in a local folder and show that local path in the database, it would be very helpful since I've been trying for a long time... with blazor webassembly
please anyone say how to implement attachment(fileupload) in this project
Nice video👍 do you have any suggestions on which SMTP server to use in production that is able to work seamlessly with the mailkit package? Gmail , 0365 etc. all require MFA which mailkit doesn't cater for
In this tutorial youre implementing basic authentication, but this is discontinued. Unfortunatelly it doesn't work in 2024
Exactly what I needed right now! Thanks for your effort!
If I could place a wish... I worked through your Udemy course which helped me a lot creating my first app for a friend (work in progress). But as I want to run the backend on a Linux machine I'd like to use EntityFramework with MariaDB instead of MS SQL Server. Is there any chance, you could set up a quick tutorial on that? I'd appreciate it with at least one coffee :)
Seriously, ask chatgpt. If you can find something to guide you alongside it you can probably achieve your goal. It's walked me through so much it's absolutely insane.
Yes
Hi Patrick! Everything is working fine, I have made Contact Us form , but the I have got the same email address for the From and the To objects! I would like to achieve after the user gives the input ( From : user email address ) that will be the sender :
email.From.Add(MailboxAddress.Parse("user_Input_email"));
email.To.Add(MailboxAddress.Parse("receiver_EmailAddress"));
I'm getting emails and etc but the Sender and Receiver are the same email address, ( using gmail ). How Can I fix it?
Hello in the Line
smtp.Connect("smtp.ethereal.email", 587, MailKit.Security.SecureSocketOptions.StartTls);
return this error
SslHandshakeException: An error occurred while attempting to establish an SSL or TLS connection.
Any idea ? thank you !
were you able to solve it ?
@@iamfahimshahriar yes thank you
in my case ,i am just stop avast anti-virus and it works.