Похожие чаты

Hi. Does anyone have a full tutorial on how to use

gmail API to send an email in ASP?
The documentation is so bad when it comes to c# SDK.
I want to know, how to authorize the account, use the credentials, and send the email.
I created the OAuth creds in GCloud platform. I just need the coding steps.

6 ответов

35 просмотров
Adnan-Al_Beda Автор вопроса

I want this cause SMTP is obsolete. I can use app password with 2FA enabled, but I want to do it 'the right way'

Adnan Al_Beda
I want this cause SMTP is obsolete. I can use app ...

https://mailtrap.io/blog/csharp-send-email/#:~:text=Well%2C%20according%20to%20Microsoft%20and,classes%20is%20a%20better%20alternative.

Adnan-Al_Beda Автор вопроса
Mr Thieves
https://mailtrap.io/blog/csharp-send-email/#:~:tex...

I read that, not what I'm looking for. If I want to use a SaaS, I'd use SendGrid instead.

Adnan Al_Beda
I read that, not what I'm looking for. If I want ...

in this sample i don't see anything other than how to use gmail to send mail with c#. using System; using MailKit.Net.Smtp; using MailKit; using MimeKit; namespace TestClient { class Program { public static void Main (string[] args) { var email = new MimeMessage(); email.From.Add(new MailboxAddress("Sender Name", "sender@email.com")); email.To.Add(new MailboxAddress("Receiver Name", "receiver@email.com")); email.Subject = "Testing out email sending"; email.Body = new TextPart(MimeKit.Text.TextFormat.Html) { Text = "<b>Hello all the way from the land of C#</b>" }; using (var smtp = new SmtpClient()) { smtp.Connect("smtp.server.address", 587, false); // Note: only needed if the SMTP server requires authentication smtp.Authenticate("smtp_username", "smtp_password"); smtp.Send(email); smtp.Disconnect(true); } } } }

Adnan-Al_Beda Автор вопроса
Adnan Al_Beda
It's using smtp, not Google sdk

smtp from their own library not from microsoft that is obsolute using MailKit.Net.Smtp;

Похожие вопросы

Обсуждают сегодня

Господа, а что сейчас вообще с рынком труда на делфи происходит? Какова ситуация?
Rꙮman Yankꙮvsky
29
А вообще, что может смущать в самой Julia - бы сказал, что нет единого стандартного подхода по многим моментам, поэтому многое выглядит как "хаки" и произвол. Короче говоря, с...
Viktor G.
2
@Benzenoid can you tell me the easiest, and safest way to bu.y HEX now?
Živa Žena
20
This is a question from my wife who make a fortune with memes 😂😂 About the Migration and Tokens: 1. How will the old tokens be migrated to the new $LGCYX network? What is th...
🍿 °anton°
2
30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
What is the Dex situation? Agora team started with the Pnetwork for their dex which helped them both with integration. It’s completed but as you can see from the Pnetwork ann...
Ben
1
Гайс, вопрос для разносторонее развитых: читаю стрим с юарта, нада выделять с него фреймы с определенной структурой, если ли чо готовое, или долбаться с ринг буффером? нада у...
Vitaly
9
Anyone knows where there are some instructions or discort about failed bridge transactions ?
Jochem
21
@lozuk how do I get my phex copies of my ehex from a atomic wallet, to move to my rabby?
Justfrontin 👀
11
Карта сайта