FoodMonkey
NatadTech
  • πŸ‘‹Introduction
  • Installation
    • βš™οΈInstallation - Shared Hosting
    • πŸ”ƒUpdating - Shared Hosting
    • πŸ’»Installation - Local Machine
  • DEFINE BASICS
    • πŸ“‚Database
    • πŸ“©Mail Server
    • βŒ›Localization and Time Format
    • πŸ’²Payments
    • πŸ’±Pricing Plans
    • πŸ’°Stripe Gateway
    • πŸ’ΈPaystack Gateway
    • πŸ—ΊοΈGoogle API
    • πŸ“ˆGoogle Analytics
    • πŸ–₯️Google Authentication
    • πŸ‘€Facebook Authentication
    • πŸ›œOne Signal Push Notifications
    • πŸ“¨Twilio SMS Notifications
  • Usage
    • πŸ“ŒGetting Started
    • πŸ‘₯Register as an Admin
    • 🌏Multilingual Menu
    • ✏️Site Set-up
    • πŸͺRestaurant Subdomain
    • 🍴Single Restaurant
    • πŸ—£οΈTranslations
    • πŸ–ŒοΈCustom CSS
    • ⬆️Import from CSV
    • πŸ“Custom Fields on Order
  • Modules
    • πŸ’‘Project Modules
    • 🧩Module Installation
    • ➑️ShareThis
    • πŸͺCookie Consent
    • πŸ–¨οΈThermal Printer Module
    • πŸͺWebHooks
  • API
    • 🀝Client API
    • πŸ›΅Driver API
  • Information
    • ❓Frequently Asked Questions
    • πŸ“œChangelog
    • πŸ–₯️Developer Information
Powered by GitBook
On this page
  • Do I need it?
  • Test your SMTP

Was this helpful?

  1. DEFINE BASICS

Mail Server

PreviousDatabaseNextLocalization and Time Format

Last updated 1 year ago

Was this helpful?

Do I need it?

Yes, FoodMonkey requires SMTP (a method for sending mail) as the system relies on it for sending emails.

  • Send password reset email

  • Order related notifications

  • Restaurant owner registration

  • Driver registration

SMTP from shared hosting

This is likely the simplest method to acquire SMTP data. Generate an email within your hosting service and make note of the credentials. You'll require them during the installation process.

Next, select "Connect Device." All the necessary information can be found there.

Here are a few examples of how it might appear.

MAIL_MAILER=sendmail
MAIL_ENCRYPTION=ssl
MAIL_PORT=465
MAIL_HOST=example.host.com
MAIL_USERNAME=mail@example.com
MAIL_PASSWORD=*****
MAIL_FROM_ADDRESS=mail@example.com
MAIL_FROM_NAME="${APP_NAME}"

MAIL_MAILER=smtp
MAIL_ENCRYPTION=null
MAIL_PORT=26
MAIL_HOST=example.host.com
MAIL_USERNAME=mail@example.com
MAIL_PASSWORD=*****
MAIL_FROM_ADDRESS=mail@example.com
MAIL_FROM_NAME="${APP_NAME}"

MAIL_MAILER=smtp
MAIL_ENCRYPTION=''
MAIL_PORT=26
MAIL_HOST=example.host.com
MAIL_USERNAME=mail@example.com
MAIL_PASSWORD=*****
MAIL_FROM_ADDRESS=mail@example.com
MAIL_FROM_NAME="${APP_NAME}"

3rd Party SMTP providers like SendGrid

SendGrid stands out as the premier SMTP provider, offering easy setup and dependable service.

Test your SMTP

MAIL_MAILER=smtp
MAIL_HOST=smtp.sendgrid.net
MAIL_PORT=587
MAIL_USERNAME=apikey
MAIL_PASSWORD=xxxxxxxxxxxxxxxxx
MAIL_ENCRYPTION=null

MAIL_FROM_ADDRESS='youremail@yourdomain.com'
MAIL_FROM_NAME='Your Project name'

Sign up for an account .

is crucial for correctly configuring your SendGrid SMTP.

Required: You need to Authenticate your domain to send emails from. is how.

πŸ“©
here
This article
Here
Online SMTP Test - Send and Check your Email Server
Logo