riandyrn / remindme-laravel

Take home challenge for Senior Laravel Developer at Nabitu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Questions Regarding Implementation of an Email Notification System for the /api/reminders Endpoint

rurifaqih15 opened this issue · comments

commented

Hello @riandyrn

POST: /api/reminders

This endpoint is used by client to create a new reminder. When the reminder is successfully created, the system will send email notification to the user when the reminder is due (when reminder_at is reached).

for this point, does the system for sending email notifications also need to be worked on?

Thanks

Hello, @rurifaqih15

Thanks for asking the question.

does the system for sending email notifications also need to be worked on?

Yes, your web app needs to be able to send an email notification.

However, please remember that it only needs to be able to send email locally, so you don't need to set up a public SMTP server. You can use something like mailpit.

commented

Okay.
Thanks for answer