nuxt-mail 3.0.10 → 3.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -178,6 +178,12 @@ export default {
178
178
  }
179
179
  ```
180
180
 
181
+ Also, the module does not work for static sites (via `nuxt generate`) because the module creates a server route.
182
+
183
+ ## Debugging mail errors
184
+
185
+ If the mail doesn't get sent, you can debug the error using the browser developer tools. If a 500 error is thrown (check out the console output), you can find the error message in the Network tab. For Chrome users, open the Network tab, then find the "send" request. Open it and select the "Response" tab. There it should show the error message. In most cases, it is related to authentication with the SMTP server.
186
+
181
187
  <!-- LICENSE/ -->
182
188
  ## Contribute
183
189
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-mail",
3
- "version": "3.0.10",
3
+ "version": "3.0.14",
4
4
  "description": "Adds email sending capability to a Nuxt.js app. Adds a server route, an injected variable, and uses nodemailer to send emails.",
5
5
  "keywords": [
6
6
  "api",
@@ -46,7 +46,7 @@
46
46
  "@dword-design/tester-plugin-nodemailer-mock": "^1.0.0",
47
47
  "@dword-design/tester-plugin-puppeteer": "^2.0.0",
48
48
  "@nuxtjs/axios": "^5.13.1",
49
- "axios": "^0.21.1",
49
+ "axios": "^0.22.0",
50
50
  "depcheck-package-name": "^2.0.0",
51
51
  "nodemailer-mock": "^1.5.4",
52
52
  "nuxt": "^2.15.3",