Admin panel setup
Go to your LaraClassified Admin panel -> Setup -> General Settings -> Mail
Set ‘Mail driver‘, ‘Mail host‘, ‘Mail port‘, ‘Mail encryption‘, ‘Mail username‘ and ‘Mail password‘
And save your changes.
Or use /.env file setup
Login to your FTP account.
Open and Edit .env file.
Remove all your current Mail configuration variables.
Copy and paste your server smtp details in the file.
It will look something like this:
MAIL_DRIVER=smtp
MAIL_HOST=your-mail-host
MAIL_PORT=your-mail-port
MAIL_USERNAME=your-mail-username
MAIL_PASSWORD=your-mail-password
MAIL_ENCRYPTION=your-mail-encryptionReplace your-mail-host, your-mail-port, your-mail-username, your-mail-password and your-mail-encryption.
Save and Upload the file
You are done.
Caution: The .env file settings override those of the admin panel.
Note:
Don't forget to change your sender email address in your Admin panel -> Setup -> General Settings -> Mail -> Transactional Email Sender to match it with an allowed email address of your SMTP server.
Visit mandrill dashboard.
Generate a API key, via this page https://mandrillapp.com/settings/
Copy the key.
Admin panel setup
Go to your Admin panel -> Setup -> General Settings -> Mail
Set ‘Mail driver‘, ‘Mandrill secret‘, ‘Mail host‘, ‘Mail port‘, ‘Mail encryption‘, ‘Mail username‘ and ‘Mail password‘
And save your changes.
Or use /.env file setup
Login to your FTP account.
Open and edit .env file.
Remove all your current Mail configuration variables.
Add the lines below:
MAIL_DRIVER=mandrill
MANDRILL_SECRET=your-mandrill-secret
MAIL_HOST=your-mandrill-smtp-host
MAIL_PORT=your-mandrill-smtp-port
MAIL_USERNAME=your-mandrill-smtp-username
MAIL_PASSWORD=your-mandrill-smtp-password
MAIL_ENCRYPTION=your-mandrill-smtp-encryptionReplace your-mandrill-secret, your-mandrill-smtp-host, your-mandrill-smtp-port, your-mandrill-smtp-username, your-mandrill-smtp-password and your-mandrill-smtp-encryption.
Save and upload the file.
You are done.
Caution: The .env file settings override those of the admin panel.
Note:
Don't forget to change your sender email address in your Admin panel -> Setup -> General Settings -> Mail -> Transactional Email Sender to match it with an allowed email address of your Mandrill API configuration.
Admin panel setup
Go to your Admin panel -> Setup -> General Settings -> Mail
Set ‘Mail driver‘, ‘SES Key‘, ‘SES secret‘ and ‘SES region‘
And save your changes.
Or use /.env file setup
Login to your FTP account.
Open and edit .env file.
Remove all your current Mail configuration variables.
Add the lines below:
MAIL_DRIVER=ses
SES_KEY=your-ses-key
SES_SECRET=your-ses-secret
SES_REGION=your-ses-regionReplace your-ses-key, your-ses-secret , your-ses-region, your-mail-host, your-mail-port, your-mail-username, your-mail-password and your-mail-encryption.
Save and upload the file.
You are done.
Caution: The .env file settings override those of the admin panel.
Note:
Don't forget to change your sender email address in your Admin panel -> Setup -> General Settings -> Mail -> Transactional Email Sender to match it with an allowed email address of your Amazon SES API configuration.
Admin panel setup
Go to your Admin panel -> Setup -> General Settings -> Mail
Set ‘Mail driver‘, ‘Mailgun domain‘, ‘Mailgun secret‘, ‘Mail host‘, ‘Mail port‘, ‘Mail encryption‘, ‘Mail username‘ and ‘Mail password‘
And save your changes.
Or use /.env file setup
Login to your FTP account.
Open and edit .env file.
Remove all your current Mail configuration variables.
Add the lines below:
MAIL_DRIVER=mailgun
MAILGUN_DOMAIN=your-mailgun-domain
MAILGUN_SECRET=your-mailgun-secret
MAILGUN_ENDPOINT=api.eu.mailgun.net
MAIL_HOST=your-mailgun-smtp-host
MAIL_PORT=your-mailgun-smtp-port
MAIL_USERNAME=your-mailgun-smtp-username
MAIL_PASSWORD=your-mailgun-smtp-password
MAIL_ENCRYPTION=your-mailgun-smtp-encryptionReplace your-mailgun-domain, your-mailgun-secret, your-mailgun-smtp-host, your-mailgun-smtp-port, your-mailgun-smtp-username, your-mailgun-smtp-password and your-mailgun-smtp-encryption.
Save and upload the file.
You are done.
Caution: The .env file settings override those of the admin panel.
Note:
Don't forget to change your sender email address in your Admin panel -> Setup -> General Settings -> Mail -> Transactional Email Sender to match it with an allowed email address of your Mailgun API configuration.
Admin panel setup
Go to your Admin panel -> Setup -> General Settings -> Mail
Set ‘Mail driver‘, ‘Sparkpost secret‘, ‘Mail host‘, ‘Mail port‘, ‘Mail encryption‘, ‘Mail username‘ and ‘Mail password‘
And save your changes.
Or use /.env file setup
Login to your FTP account.
Open and edit .env file.
Remove all your current Mail configuration variables.
Add the lines below:
MAIL_DRIVER=sparkpost
SPARKPOST_SECRET=your-sparkpost-secret
MAIL_HOST=your-sparkpost-smtp-host
MAIL_PORT=your-sparkpost-smtp-port
MAIL_USERNAME=your-sparkpost-smtp-username
MAIL_PASSWORD=your-sparkpost-smtp-password
MAIL_ENCRYPTION=your-sparkpost-smtp-encryptionReplace your-sparkpost-secret, your-sparkpost-smtp-host, your-sparkpost-smtp-port, your-sparkpost-smtp-username, your-sparkpost-smtp-password and your-sparkpost-smtp-encryption.
Example:
MAIL_DRIVER=sparkpost
SPARKPOST_SECRET=your-sparkpost-secret
MAIL_HOST=smtp.sparkpostmail.com
MAIL_PORT=587
MAIL_USERNAME=SMTP_Injection
MAIL_PASSWORD=your-sparkpost-secret
MAIL_ENCRYPTION=STARTTLSIMPORTANT: Don’t forget to properly configure your domain’s DNS zones for Sparkpost. Please see this link for more information: https://www.sparkpost.com/docs/getting-started/getting-started-sparkpost/
Save and upload the file.
You are done.
Caution: The .env file settings override those of the admin panel.
Note:
Don't forget to change your sender email address in your Admin panel -> Setup -> General Settings -> Mail -> Transactional Email Sender to match it with an allowed email address of your Sparkpost API configuration.