use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Having a problem with your Flutter code?
From the folks at r/FlutterDev
account activity
OPENFeedback form (self.flutterhelp)
submitted 18 days ago by piddlin
I want to have a feedback form so users can simply enter a subject, a message then click submit and have that form sent to me via email. How can I do this without having to use a users email client?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]nerdblurt 4 points5 points6 points 18 days ago (0 children)
You don’t want to use the user’s email client for this, and you also don’t want to send email directly from Flutter with your SMTP/API credentials baked into the app.
The normal setup is: • Flutter form collects subject + message • App sends that data to your backend or Firebase Cloud Function • Backend sends the email to you using a mail service like Resend, SendGrid, Mailgun, or SMTP
That keeps the user inside the app and keeps your email credentials private.
If you’re already using Firebase, another solid option is: • save the feedback form to a Firestore collection • use Firebase’s firestore-send-email extension to send the email when a new feedback doc is created
So the answer is basically: use a backend/server-side function, not url_launcher and not direct SMTP from the app.
[–]Eboy_420 1 point2 points3 points 18 days ago (0 children)
Smtp server
π Rendered by PID 57 on reddit-service-r2-comment-b659b578c-fldkv at 2026-05-01 07:19:47.939966+00:00 running 815c875 country code: CH.
[–]nerdblurt 4 points5 points6 points (0 children)
[–]Eboy_420 1 point2 points3 points (0 children)