Strapi SMTP setup
up vote
0
down vote
favorite
How should I connect to a local smtp server using Strapi? I need it to send reset password email to user email. I've managed to do it with sendgrid, by installing providers
npm install strapi-provider-email-sendgrid@alpha --save
however, I'm not sure how to do it with our own smtp server.
For example I have this SMTP server details, however I don't know where should I plugin these values to:
1) SMTP server address: 10.10.10.9
2) port: 25
3) Username: username
4) Password: password
Accoding to nodemailer link, I can set it here. However, I still don't know where to set it in strapi
let smtpConfig = {
host: 'smtp.example.com', // 10.10.10.9
port: 587, // 25
secure: false, // upgrade later with STARTTLS
auth: {
user: 'username', // username
pass: 'password' // password
}
};
How can I duplicate the sendgrid provider and modify it?
There's only "Sendmail Default From" and "Sendmail Default Reply-To" fields in the email setting page:
smtp strapi
add a comment |
up vote
0
down vote
favorite
How should I connect to a local smtp server using Strapi? I need it to send reset password email to user email. I've managed to do it with sendgrid, by installing providers
npm install strapi-provider-email-sendgrid@alpha --save
however, I'm not sure how to do it with our own smtp server.
For example I have this SMTP server details, however I don't know where should I plugin these values to:
1) SMTP server address: 10.10.10.9
2) port: 25
3) Username: username
4) Password: password
Accoding to nodemailer link, I can set it here. However, I still don't know where to set it in strapi
let smtpConfig = {
host: 'smtp.example.com', // 10.10.10.9
port: 587, // 25
secure: false, // upgrade later with STARTTLS
auth: {
user: 'username', // username
pass: 'password' // password
}
};
How can I duplicate the sendgrid provider and modify it?
There's only "Sendmail Default From" and "Sendmail Default Reply-To" fields in the email setting page:
smtp strapi
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
How should I connect to a local smtp server using Strapi? I need it to send reset password email to user email. I've managed to do it with sendgrid, by installing providers
npm install strapi-provider-email-sendgrid@alpha --save
however, I'm not sure how to do it with our own smtp server.
For example I have this SMTP server details, however I don't know where should I plugin these values to:
1) SMTP server address: 10.10.10.9
2) port: 25
3) Username: username
4) Password: password
Accoding to nodemailer link, I can set it here. However, I still don't know where to set it in strapi
let smtpConfig = {
host: 'smtp.example.com', // 10.10.10.9
port: 587, // 25
secure: false, // upgrade later with STARTTLS
auth: {
user: 'username', // username
pass: 'password' // password
}
};
How can I duplicate the sendgrid provider and modify it?
There's only "Sendmail Default From" and "Sendmail Default Reply-To" fields in the email setting page:
smtp strapi
How should I connect to a local smtp server using Strapi? I need it to send reset password email to user email. I've managed to do it with sendgrid, by installing providers
npm install strapi-provider-email-sendgrid@alpha --save
however, I'm not sure how to do it with our own smtp server.
For example I have this SMTP server details, however I don't know where should I plugin these values to:
1) SMTP server address: 10.10.10.9
2) port: 25
3) Username: username
4) Password: password
Accoding to nodemailer link, I can set it here. However, I still don't know where to set it in strapi
let smtpConfig = {
host: 'smtp.example.com', // 10.10.10.9
port: 587, // 25
secure: false, // upgrade later with STARTTLS
auth: {
user: 'username', // username
pass: 'password' // password
}
};
How can I duplicate the sendgrid provider and modify it?
There's only "Sendmail Default From" and "Sendmail Default Reply-To" fields in the email setting page:
smtp strapi
smtp strapi
edited yesterday
asked yesterday
user1872384
4,07543060
4,07543060
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53408866%2fstrapi-smtp-setup%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown