This project is not actively being maintained. If you're sending emails on a node.js-esque platform, please use Andris Reinman's nodemailer. It is actively supported, more widely used and maintained offers more possibilities for sending mails than this project.
Background: This project was created because there was no option of using SMTP in a browser environment. This use case has been eliminated since Chrome Apps reached end of life and Firefox OS was scrapped. If you're on an electron-based platform, please use the capabilities that come with a full fledged node.js backend.
If you still feel this project has merit and you would like to be a maintainer, please reach out to me.
emailjs-mime-types
allows you to detect file extensions for content types and vice-versa.
npm install --save emailjs-mime-types
import { detectExtension, detectMimeType } from 'emailjs-mime-types'
Returns file extension for a content type string. If no suitable extensions are found, 'bin' is used as the default extension.
mimetypes.detectExtension(mimeType: String, [favoredExtension: String]) -> String
- mimeType - Content type to be checked for
- favoredExtension (optional) - If multiple extensions exist for type, then pick favoredExtension if available
For example:
mimetypes.detectExtension('image/jpeg') // returns 'jpeg'
mimetypes.detectExtension('image/jpeg', 'jpg') // returns 'jpg'
mimetypes.detectExtension('image/jpeg', 'txt') // returns 'jpeg'
Returns content type for a file extension. If no suitable content types are found, 'application/octet-stream' is used as the default content type
mimetypes.detectMimeType(extension: String) -> String
- extension Extension to be checked for
For example:
mimetypes.detectExtension('jpeg') // returns 'image/jpeg'
Copyright (c) 2013 Andris Reinman
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.