You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Resend is an email service used for signing in to Trigger.dev via a Magic Link.
35
-
# Emails will print to the console if you leave these commented out
34
+
# Configure an email transport to allow users to sign in to Trigger.dev via a Magic Link.
35
+
# If none are configured, emails will print to the console instead.
36
+
# Uncomment one of the following blocks to allow delivery of
37
+
38
+
# Resend
36
39
### Visit https://resend.com, create an account and get your API key. Then insert it below along with your From and Reply To email addresses. Visit https://resend.com/docs for more information.
37
-
# RESEND_API_KEY=<api_key>
40
+
# EMAIL_TRANSPORT=resend
41
+
# FROM_EMAIL=
42
+
# REPLY_TO_EMAIL=
43
+
# RESEND_API_KEY=
44
+
45
+
# Generic SMTP
46
+
### Enter the configuration provided by your mail provider. Visit https://nodemailer.com/smtp/ for more information
47
+
### SMTP_SECURE = false will use STARTTLS when connecting to a server that supports it (usually port 587)
48
+
# EMAIL_TRANSPORT=smtp
49
+
# FROM_EMAIL=
50
+
# REPLY_TO_EMAIL=
51
+
# SMTP_HOST=
52
+
# SMTP_PORT=587
53
+
# SMTP_SECURE=false
54
+
# SMTP_USER=
55
+
# SMTP_PASSWORD=
56
+
57
+
# AWS Simple Email Service
58
+
### Authentication is configured using the default Node.JS credentials provider chain (https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-credential-providers/#fromnodeproviderchain)
0 commit comments