MIMEText icon indicating copy to clipboard operation
MIMEText copied to clipboard

RFC-2822, RFC-2045 and RFC-2049 compliant raw email message generator.

Results 13 MIMEText issues
Sort by recently updated
recently updated
newest added

Fixes #63. Import of mimetext has been broken since v3.0.19 in both CJS and ESM node. Bundler environment is still working. arethetypeswrong can check and verify this: ![image](https://github.com/muratgozel/MIMEText/assets/6838982/1cb055dc-e5cb-4a47-9100-a9ee801a18fc) While the...

text/plain alternative part disappears when adding inline Image ``` const x = createMimeMessage(); x.setSender({name: "Test", addr: "[email protected]"}); x.setRecipient("[email protected]"); x.setSubject("This is a test"); x.addMessage({ contentType: 'text/html', data: "Lorem ipsum dolor sit...

## Introduction Cloudflare in their [documentation](https://developers.cloudflare.com/email-routing/email-workers/send-email-workers/) propose to use `mimetext` for sending emails in their Cloudflare Workers and Cloudflare Email Workers. ## The problem Since updating to version `3.0.21` (although...

According to [RFC 2047](https://www.rfc-editor.org/rfc/rfc2047#section-8) an encoded word cannot be longer than 76 characters (including everything). So a longer subject line should be split and encoded into multiple encoded words. Using...

The RFC for Mails requires all lines in the Message to not be longer than 1000 characters (including CR+LF). If I create a Message with this library, I would expect...

for automated testing purposes, it'd be great to be able to parse a raw string into a `MIMEMessage` instance so we can easily write test assertions.

I cannot find any support for adding attachments that are compressed as zip files but this is a valid option when creating a raw email string. Have a I missed...

Would be nice if there was a way to access the MIMEMessage class from the npm module. for example: ``` import MIMEMessage from "mimetext/MIMEMessage" let envctx = { ... }...

When using a MimeText built email with AWS SES, I get the following error message when attempting to send to origins with special characters in the name: ```json {"message":"Missing '\"'"}...

I'm currently working on a project that uses [AMP4Email](https://amp.dev/documentation/guides-and-tutorials/learn/email-spec/amp-email-structure/), which is an alternative MIME part and adds interactive capability in email messages. I've added support for the text/x-amp-html MIME type,...