strapi-plugin-email-designer icon indicating copy to clipboard operation
strapi-plugin-email-designer copied to clipboard

Can't change shipper name

Open slipiduche opened this issue 2 years ago • 1 comments

HI, how can I change shipper name in custom templates?

slipiduche avatar Aug 19 '22 20:08 slipiduche

Thank you!! This is your first issue on this repo

github-actions[bot] avatar Aug 19 '22 20:08 github-actions[bot]

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"),
      },
    },
  },

BayBreezy avatar Oct 23 '22 12:10 BayBreezy