Hi
I am trying to use default email services in strapi for development but i am facing error
error: Couldn’t send test email: can not connect to any SMTP server.
Error: Couldn’t send test email: can not connect to any SMTP server.
at Object.test (D:\FinalCMJL\backend\node_modules@strapi\plugin-email\server\controllers\email.js:50:15)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
I am just testing my email from Strapi dashboard
my plugin.js look like
module.exports = ({ env }) => ({
// …
email: {
config: {
provider: ‘sendmail’,
settings: {
defaultFrom: ‘p6092@gmail.com’,
defaultReplyTo: ‘s738842163@gmail.com’,
},
},
},
// …
})
When i use different network i got this error
The IP address sending this message does not have a
550-5.7.25 PTR record setup, or the corresponding forward DNS entry does not
550-5.7.25 point to the sending IP. As a policy, Gmail does not accept messages
550-5.7.25 from IPs with missing PTR records.
Please help me to solve it