I want to develop a Flutter-based email client for my company that allows users to consult (receive) and send emails. However, my company uses Microsoft Exchange (currently are using Outlook in phones, but due to some local politics it will be eliminated) they are allowing only SMTP for sending emails—no IMAP, POP3.
Is it possible to build a full email client in Flutter using only SMTP? If SMTP is only for sending emails, how can I retrieve (consult) emails from Microsoft Exchange? Are there any Flutter plugins or workarounds that support Microsoft Exchange when IMAP/POP3 are not allowed? Any guidance, recommended libraries, or alternative solutions would be greatly appreciated!
No, you cannot develop a full-featured Flutter mail app for Microsoft Exchange using only SMTP because SMTP (Simple Mail Transfer Protocol) is designed only for sending emails, not for receiving or managing them.
To build a complete email client for Microsoft Exchange, you need:
SMTP (for sending emails)
smtp.office365.com
for Office 365/Exchange Online).IMAP or POP3 (for receiving emails) – Not ideal for Exchang
3.Microsoft Graph API (Recommended for Exchange & Office 365)
How to proceed? If you're building a Flutter email app for Microsoft Exchange, you should: