strapi-plugin-email-designer
strapi-plugin-email-designer copied to clipboard
Can't change shipper name
HI, how can I change shipper name in custom templates?
Thank you!! This is your first issue on this repo
Hey @slipiduche ,
You can check the Email templates
settings for the two email created by Strapi in every project http://localhost:1337/admin/settings/users-permissions/email-templates
Clicking on the Reset password
or Email address confirmation
template will give the option to change the Shipper email
Ensure that the email config is done properly in your config/plugins.{js|ts}
file:
// Email config
email: {
config: {
provider: "nodemailer",
providerOptions: {
host: env("SMTP_HOST"),
port: env("SMTP_PORT"),
auth: {
user: env("SMTP_USERNAME"),
pass: env("SMTP_PASSWORD"),
},
},
settings: {
defaultFrom: `<${env("SMTP_USERNAME")}>`,
defaultReplyTo: env("SMTP_USERNAME"),
},
},
},