Download the PHP package mailpace/mailpace-swiftmailer without Composer
On this page you can find all versions of the php package mailpace/mailpace-swiftmailer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mailpace/mailpace-swiftmailer
More information about mailpace/mailpace-swiftmailer
Files in mailpace/mailpace-swiftmailer
Package mailpace-swiftmailer
Short Description The official Swiftmailer transport for MailPace
License MIT
Homepage https://github.com/mailpace/mailpace-swiftmailer
Informations about the package mailpace-swiftmailer
The official Swiftmailer transport for MailPace
MailPace lets you send transactional emails from your app over an easy to use API.
This MailPace PHP Package is a transport for SwiftMailer to send emails via MailPace to make sending emails from PHP apps super simple. You can use this with popular frameworks such as Laravel, Codeigniter and Symfony to send transactional emails, or with a standalone PHP app.
This package uses the MailPace HTTPS /send endpoint to send the email - which is generally faster and more reliable than SMTP, although you can of course use SMTP to send out emails from your PHP app without installing this package if you prefer.
Pre-requisites
You will need an MailPace account with a verified domain and organization with an active plan.
Installation
Install the package via composer:
Account Setup
Set up an account at MailPace and complete the Onboarding steps
Configure the Package
First you will need to retrieve your API token for your sending domain from MailPace. You can find it under Organization -> Domain -> API Tokens
You'll need to store this API token somewhere in your app/runtime, we recommend Environment Variables for this, and the examples below assume that you have an environment variable called OHMYSMTP_API_TOKEN
that contains your API token
Sending without a framework
Sending with Laravel
To send with Laravel you need to make a few small tweaks, but it really only takes a moment.
-
Add mailpace to the
config/mail.php
configuration file: -
Add the following to your
config/services.php
configuration file: - In
config/app.php
, add the following to the providers array:
and remove / comment out the line:
- In your
.env
file (or wherever you store environment variables), change theMAIL_MAILER
variable as follows:
MAIL_MAILER=mailpace
- Create a new file called
MailpaceServiceProvider.php
inApp/Providers
with the following contents:
After completing the above steps, all email will be sent via MailPace.
Support
For support please check the MailPace Documentation or contact us at [email protected]
Contributing
Please ensure to add a test for any changes. To run the tests:
composer test
Pull requests always welcome
License
The gem is available as open source under the terms of the MIT License.