Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added isEncoded option #17

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/builder-unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,23 @@ describe('Mimebuilder', function () {
expect(mb.build()).to.equal(expected)
})

it('should not encode if isEncoded is true', function () {
const mb = new Mimebuilder('multipart/mixed')
.createChild('image/jpeg', {
filename: 'encoded.jpg',
isEncoded: true
})
.setContent('this should not change')
const expected =
'Content-Type: image/jpeg\r\n' +
'Content-Transfer-Encoding: base64\r\n' +
'Content-Disposition: attachment; filename=encoded.jpg\r\n' +
'\r\n' +
'this should not change'

expect(mb.build()).to.equal(expected)
})

it('should use from domain for message-id', function () {
const mb = new Mimebuilder('text/plain')
.setHeader({
Expand Down
38 changes: 24 additions & 14 deletions src/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import {
* @param {Object} [options.parentNode] immediate parent for this node
* @param {Object} [options.filename] filename for an attachment node
* @param {String} [options.baseBoundary] shared part of the unique multipart boundary
* @param {String} [options.isEncoded] is the node's content encoded or not
*/
export default class MimeNode {
constructor (contentType, options = {}) {
Expand Down Expand Up @@ -91,6 +92,11 @@ export default class MimeNode {
* If true then BCC header is included in RFC2822 message.
*/
this.includeBccInHeader = options.includeBccInHeader || false

/**
* Is this node's content already encoded
*/
this.isEncoded = options.isEncoded
}

/**
Expand Down Expand Up @@ -400,20 +406,24 @@ export default class MimeNode {
lines.push('')

if (this.content) {
switch (transferEncoding) {
case 'quoted-printable':
lines.push(quotedPrintableEncode(this.content))
break
case 'base64':
lines.push(base64Encode(this.content, typeof this.content === 'object' ? 'binary' : undefined))
break
default:
if (flowed) {
// space stuffing http://tools.ietf.org/html/rfc3676#section-4.2
lines.push(foldLines(this.content.replace(/\r?\n/g, '\r\n').replace(/^( |From|>)/igm, ' $1'), 76, true))
} else {
lines.push(this.content.replace(/\r?\n/g, '\r\n'))
}
if (this.isEncoded) {
lines.push(this.content.replace(/\r?\n/g, '\r\n'))
} else {
switch (transferEncoding) {
case 'quoted-printable':
lines.push(quotedPrintableEncode(this.content))
break
case 'base64':
lines.push(base64Encode(this.content, typeof this.content === 'object' ? 'binary' : undefined))
break
default:
if (flowed) {
// space stuffing http://tools.ietf.org/html/rfc3676#section-4.2
lines.push(foldLines(this.content.replace(/\r?\n/g, '\r\n').replace(/^( |From|>)/igm, ' $1'), 76, true))
} else {
lines.push(this.content.replace(/\r?\n/g, '\r\n'))
}
}
}
if (this.multipart) {
lines.push('')
Expand Down