-
Notifications
You must be signed in to change notification settings - Fork 1.9k
testing_with_email
KernelDeimos edited this page Oct 23, 2024
·
1 revision
Testing anything involving email is really simple using mailhog
In your config.json
for Puter (volatile/config/config.json
usually, /var/puter/config.json
in containers),
add this entry to the "services
" map:
"services": {
// ... there are probably other service configs
"email": {
"host": "localhost",
"port": 1025
}
}
Follow the instructions on MailHog's repository, or install through your distro's package manager.
Run the command: mailhog
.
You should now have an inbox at http://127.0.0.1:8025.
Every email that Puter sends will show up on this page.
You are reading documentation for the open-source repository of Puter.
Getting started on localhost is as simple as git clone
npm install
npm start
.