Skip to content

Commit

Permalink
fix default url
Browse files Browse the repository at this point in the history
  • Loading branch information
rizen committed Mar 3, 2024
1 parent 3c8c49b commit 71ae66e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ving/email/send.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const vingConfig = JSON.parse(
)
);
vingConfig.site.url = process.env.VING_SITE_URL;
const emailConfig = new URL(process.env.VING_SMTP || '');
const emailConfig = new URL(process.env.VING_SMTP || 'smtp://localhost:465');

const defaultTransporter = createTransport({
host: emailConfig.hostname,
Expand Down

0 comments on commit 71ae66e

Please sign in to comment.