Hello everyone,
I’m setting up a web server with a MySQL database to host my applications. However, I don’t need local email services (no receiving or managing emails on the server). My goal is to use Mailjet’s SMTP server to send necessary notifications (e.g., alerts or confirmation emails).
My requirements:
- Fixed sender address: The sender address for outgoing emails must be explicitly defined, e.g.,
[email protected]
, and should not depend on the server’s hostname. - No local email handling: I don’t want services like Exim4 or Postfix managing emails locally.
- Simplicity: I’d prefer a lightweight solution without setting up a full-blown mail server if possible.
My questions:
- How can I configure my server to send emails via Mailjet without requiring a complete MTA?
- How can I set a fixed sender address, e.g.,
[email protected]
? - Is there a lightweight alternative to simply relay emails via Mailjet?
I’d appreciate any suggestions or advice, especially if it simplifies the setup.
Thank you in advance for your help!