Sign inGet Started

SMTP

Send Laravel email with SMTP

Configure Laravel Mail to send through Parcel Wing SMTP.

SMTP settings

Copy the exact values from your in-app Settings page. Most accounts use these defaults.

SettingValue
Hostsmtp.parcelwing.com
Port587
SecuritySTARTTLS
Usernameparcelwing
PasswordAny active Parcel Wing API key

Environment

Update your Laravel .env file with Parcel Wing SMTP credentials.

.env

MAIL_MAILER=smtp
MAIL_HOST=smtp.parcelwing.com
MAIL_PORT=587
MAIL_USERNAME=parcelwing
MAIL_PASSWORD=pw_live_your_api_key_here
MAIL_ENCRYPTION=tls
MAIL_FROM_NAME="Acme"

Use a verified sender

Your from address should belong to a sending domain that is verified in Parcel Wing. This keeps SPF, DKIM, and DMARC aligned for better deliverability.

Troubleshooting

  • Use port 587 with STARTTLS, not implicit TLS on port 465.
  • Use parcelwing as the username and an active Parcel Wing API key as the password.
  • Make sure the sender address uses a verified sending domain.
  • If a vendor has a test email button, send a test before enabling production email.