I am developing a website with flutter web.
But I can't find a plugin or something to be able to send emails directly from a contact form 😪
How can I send an email directly from flutter web?
Sending emails via the client-side (e.g. Flutter) is not recommended and has lots of security issues. You will have to put some private information in your app and anyone can access this information.
So the correct way to do this is by using a backend(e.g. Node.js) and make your Flutter app communicate with this backend via sending a post HTTP request.
You can easily achieve that using some node js packages like nodemailer
Related
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.
I am trying to make an app to access emails from mail-boxes (such as Gmail and Yahoo Mail) and to store it in my local storage. Is there any way in a flutter to implement that.?
Sure there is.
You could use imap_client or enough_mail or others.
If you really only want Google Mail, you could use their own package googleapis
Is there a way to send an email using the Ionic framework without opening a composer app?
I have all the required fields, I just need to send the email.
I've seen that there are plugins (like this http://ngcordova.com/docs/plugins/emailComposer/) but they all open another screen.
I'm trying to send email directly from my android app. I've found this tutorial and implemented it into my app, but it seems it doesn't work for some reason.
I have INTERNET PERMISSION and I've made asynctask for sending, but it still doesn't send any email. I don't have a server, and I don't want to send over intent. I just want this to work like it should with my email client.
I am so confused. My simple requirement is: i have an application which contains confirmation form i.e. nib file. It contains some textFields like name, age, email etc. I simply want when somebody click on submit button application send background and automatic email to email defined in textField. that email contain all information like name, age etc. User need not to fil anything and it should work in background. There are so many application do the same thing. I am creating booking application.
So how can i impliment this behaviour.
Apple does not provide a way to do this - and for good reason. Sending emails from the phone automatically introduces a lot of security risks.
I am willing to bet that the apps that do this use an intermediary server to which they post the data. When the data is posted then the server handles the sending of the emails.
To do this:
Send an HTTPS POST request to your server application.
From your server application, send an email via SMTP (or APIs built on top of SMTP).
Google AppEngine provides a simple and cheap way to create such a web service, running on top of Google's cloud-computing infrastructure. The sending mail from AppEngine help document includes detailed examples of how to send mail from your server application (assuming you use the Python version of Google AppEngine).
Unfortunately, there is no official feature for this but you could download a third-party library. Refer here for a couple of suggestions.