Skip to content

Instantly share code, notes, and snippets.

@shanwixcode
Created May 27, 2021 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shanwixcode/8eef6244b1e3f4c751070595367c3693 to your computer and use it in GitHub Desktop.
Save shanwixcode/8eef6244b1e3f4c751070595367c3693 to your computer and use it in GitHub Desktop.
import {mediaManager} from 'wix-media-backend';
import {bufferEncode} from './sendgrid';
export function getFileUrl(fileId) {
return mediaManager.getFileUrl(fileId);
}
export function sendMail(url, email, subject, body, filename, filetype) {
return bufferEncode(url, email, subject, body, filename, filetype);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment