Skip to content

Commit

Permalink
Fixing minor bug in examples causing the cid to not function.
Browse files Browse the repository at this point in the history
  • Loading branch information
David Ellis committed Aug 12, 2011
1 parent 464e058 commit b536ada
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/example_ses.js
Expand Up @@ -17,7 +17,7 @@ var message = {
subject: 'Nodemailer is unicode friendly ✔',

body: 'Hello to myself!',
html:'<p><b>Hello</b> to myself <img src="cid:"' + cid + '"/></p>',
html:'<p><b>Hello</b> to myself <img src="cid:' + cid + '"/></p>',
debug: true,
attachments:[
{
Expand Down
2 changes: 1 addition & 1 deletion examples/example_smtp.js
Expand Up @@ -21,7 +21,7 @@ var message = {
subject: 'Nodemailer is unicode friendly ✔',

body: 'Hello to myself!',
html:'<p><b>Hello</b> to myself <img src="cid:"' + cid + '"/></p>',
html:'<p><b>Hello</b> to myself <img src="cid:' + cid + '"/></p>',
debug: true,
attachments:[
{
Expand Down

0 comments on commit b536ada

Please sign in to comment.