nuxt-mail 3.0.9 → 3.0.13

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 +14 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -25,25 +25,25 @@
25
25
  <img
26
26
  src="https://gitpod.io/button/open-in-gitpod.svg"
27
27
  alt="Open in Gitpod"
28
- height="32"
28
+ width="114"
29
29
  >
30
30
  </a><a href="https://www.buymeacoffee.com/dword">
31
31
  <img
32
32
  src="https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg"
33
33
  alt="Buy Me a Coffee"
34
- height="32"
34
+ width="114"
35
35
  >
36
36
  </a><a href="https://paypal.me/SebastianLandwehr">
37
37
  <img
38
38
  src="https://sebastianlandwehr.com/images/paypal.svg"
39
39
  alt="PayPal"
40
- height="32"
40
+ width="163"
41
41
  >
42
42
  </a><a href="https://www.patreon.com/dworddesign">
43
43
  <img
44
44
  src="https://sebastianlandwehr.com/images/patreon.svg"
45
45
  alt="Patreon"
46
- height="32"
46
+ width="163"
47
47
  >
48
48
  </a>
49
49
  </p>
@@ -178,6 +178,12 @@ export default {
178
178
  }
179
179
  ```
180
180
 
181
+ Also, the module 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
 
@@ -192,28 +198,28 @@ Hey, I am Sebastian Landwehr, a freelance web developer, and I love developing w
192
198
  <img
193
199
  src="https://www.buymeacoffee.com/assets/img/guidelines/download-assets-sm-2.svg"
194
200
  alt="Buy Me a Coffee"
195
- height="32"
201
+ width="114"
196
202
  >
197
203
  </a>&nbsp;If you want to send me a one time donation. The coffee is pretty good 😊.<br/>
198
204
  <a href="https://paypal.me/SebastianLandwehr">
199
205
  <img
200
206
  src="https://sebastianlandwehr.com/images/paypal.svg"
201
207
  alt="PayPal"
202
- height="32"
208
+ width="163"
203
209
  >
204
210
  </a>&nbsp;Also for one time donations if you like PayPal.<br/>
205
211
  <a href="https://www.patreon.com/dworddesign">
206
212
  <img
207
213
  src="https://sebastianlandwehr.com/images/patreon.svg"
208
214
  alt="Patreon"
209
- height="32"
215
+ width="163"
210
216
  >
211
217
  </a>&nbsp;Here you can support me regularly, which is great so I can steadily work on projects.
212
218
  </p>
213
219
 
214
220
  Thanks a lot for your support! ❤️
215
221
 
216
- ## See Also
222
+ ## See also
217
223
 
218
224
  * [nuxt-route-meta](https://github.com/dword-design/nuxt-route-meta): Adds Nuxt page data to route meta at build time.
219
225
  * [nuxt-modernizr](https://github.com/dword-design/nuxt-modernizr): Adds a Modernizr build to your Nuxt.js app.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-mail",
3
- "version": "3.0.9",
3
+ "version": "3.0.13",
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",