How to send email with HTML body in Flutter's web? - flutter

I am using the mailer package. However, the mailer package does not support web. Suddenly I thought that the package url_launcher can send emails and support the web.
However, I have a question, how can I make the body HTML? Or is this not a solution for sending emails with HTML body?
I didn't include the code because I don't think the code has anything to do with this.
If you need more info feel free to leave a comment!
How to send email with HTML body in Flutter's web? I would appreciate any help. Thank you in advance!

For a few of my recent projects built for web I was using firebase, and could simply add the Firebase Mail Extension, which allows you to push a document to a specific collection with data such as the target email address, subject, and body (included HTML). The extension then triggers the email to be sent through SMTP.
Read more about it here

Related

How to send email in flutter withouth open a email app?

I'm newest in flutter.
I need help.
In one of the pages of my application, I need to send an email without opening the email application itself.
I'll explain.
I have a bug report page. For example, I need to send an email because a package has not been returned.
After filling out a form with my personal data, I need to automatically send an email.
I tried with url_lanch and mailer but either nothing happens or the gmail app opens (in the android emulator).
Can anyone help me?
use mailer package mailer to send mail. and also can make custom template using http package from the same site.

Email action google-schema markup doesn't work

I'm sending markups copied from google developers reference (also from here). They don't work at all, even when I email to myself.
I also tested sending html email with google doc
#Alireza Mirian It sounds like you're copying the JSON and pasting it into your email message in the Gmail UI.
Try using this tool with your Gmail account.
You can also try using App Script and follow along with this tutorial.
I hope this helps.

How to embed videos in Outlook or Thunderbird?

Is it possible to embed Youtube videos in email messages in Outlook or Thunderbird so that the receiver can play the video inside of Outlook or Thunderbird?
(I dont want picture with hyperlink to youtube).
Thanks for hint or tip.
You can use the embed code of Youtube. Then in Thunderbird, create an html-formatted message and go to Insert ->HTML, put your embed code there.
Most mail clients won't display anything, but some may do it. Thunderbird itself will not show it.
You can use third-party services like viwomail to generate a HTML template of your mail. They will do things like generating GIF/images(to be used in cases when email clients don't allow videos to play).
Next, you can use services like Sendinblue to send HTML email.
Some of the email clients do not allow videos strictly. However, Apple mail client, outlook 16(only on MAC), Samsung native email app and some other clients do work for me.

WinRT/Metro/Win8 Share Contracts - How to send mail with subject, text and attachtment?

Is there an build in feature that provides sharing multiply types like text and image to other applications? All i found was sharing only text or only images to the build in mail application of windows 8.
Want to send an E-Mail were the subject, text and attachment is preset.
From my experience, the current build of Mail (Release Preview) simply won't do it. If you have an attachment, it ignores the subject and text. Look like we're going to have to wait for RTM or test with another email client.
UPDATE: AFAIK, this is still the case even after RTM. The Mail client simply can't handle both a message body and an attachment.

How can I send a thanks email in asp.net?

I have to send a thanks email (if someone emails to the particular account they will get automatic email saying "Thanks for sending"). How should I do this in asp.net mvc 2? What is the logic?
Consider using a brilliant library MvcMailer
You can use it to send text or html email, which body you define as a view. You can use whatever model you need and render emails with specific data.
It is available as a NuGet package for easy install.