Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 833 Bytes

sendgrid.md

File metadata and controls

32 lines (20 loc) · 833 Bytes

integrating sendgrid with pas

signup with sendgrid

if you do not have a sendgrid account, signup fro a free one here

create api key

in sendgrid web ui, go to account --> api keys
click on create API Key

create api key

select restricted and enable mail send.

once api key is created, copy the key to your env file
the key is only show once !!!

imapi key

populate the following env vars before deployment

SMTP_ADDRESS="smtp.sendgrid.net"
SMTP_IDENTITY="apikey"
SMTP_PASSWORD="your api key"
SMTP_FROM="your from address"
SMTP_PORT="587"
SMTP_STARTTLS="true"