- Notifications
You must be signed in to change notification settings - Fork171
Drag-n-Drop Email Editor Component for Angular
License
unlayer/angular-email-editor
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
The excellent drag-n-drop email editor byUnlayer as aAngularwrapper component. This is the most powerful and developer friendly visual email builder for your app.
Video Overview |
---|
Watch video overview:https://youtu.be/MIWhX-NF3j8 |
Check out the live demo here:https://angular-email-editor-demo.netlify.app/ (Source Code)
The easiest way to use Angular Email Editor is to install it from Npm or Yarn and include it in your own Angular build process.
npm install angular-email-editor --save
Next, you'll need to import the Email Editor module in your app's module.
app.module.ts
If you don't have anapp.module.ts file, you can ignore this step and add
imports: [ EmailEditorModule ]
to yourapp.component.ts instead.
import{EmailEditorModule}from'angular-email-editor';...@NgModule({ ...imports:[EmailEditorModule], ...});
app.component.ts
import{Component,ViewChild}from'@angular/core';import{EmailEditorComponent,EmailEditorModule}from'angular-email-editor';@Component({selector:'app-root',templateUrl:'./app.component.html',styleUrls:['./app.component.css'],imports:[EmailEditorModule],})exportclassAppComponent{title='angular-email-editor';options:EmailEditorComponent['options']={version:'latest',appearance:{theme:'modern_dark',},}; @ViewChild(EmailEditorComponent)privateemailEditor!:EmailEditorComponent;privategetunlayer(){returnthis.emailEditor.editor;}// called when the editor is creatededitorLoaded(){console.log('editorLoaded');// load the design json here// you can get the design json by calling unlayer.exportHtml (see below)// this.unlayer.loadDesign({ /* json object here */ });}// called when the editor has finished loadingeditorReady(){console.log('editorReady');}exportHtml(){this.unlayer.exportHtml((result)=>{// result object format: { html: string, design: object, amp: object, chunks: object }console.log('exportHtml',result);});}}
app.component.html
<divclass="container"><button(click)="exportHtml()">Export</button><email-editor[options]="options"(loaded)="editorLoaded()"(ready)="editorReady()"></email-editor></div>
Skip Lib Check
SetskipLibCheck: true
intsconfig.json
.
tsconfig.json
{"compilerOptions":{"skipLibCheck":true,}}
See theexample source for a reference implementation.
All unlayer methods are available inthis.unlayer
. Here are the most used ones:
method | params | description |
---|---|---|
loadDesign | Object data | Takes the design JSON and loads it in the editor |
saveDesign | Function callback | Returns the design JSON in a callback function |
exportHtml | Function callback | Returns the design HTML and JSON in a callback function |
See theUnlayer Docs for all available methods, or log the object in the console to explore it.
editorId
String
HTML div id of the container where the editor will be embedded (optional)minHeight
String
minimum height to initialize the editor with (default 500px)options
Object
options passed to the Unlayer editor instance (default {})tools
Object
configuration for the built-in and custom tools (default {})appearance
Object
configuration for appearance and theme (default {})projectId
Integer
Unlayer project ID (optional)loaded
Function
called when the editor instance is createdready
Function
called when the editor has finished loading
See theUnlayer Docs for all available options.
Custom tools can help you add your own content blocks to the editor. Every application is different and needs different tools to reach it's full potential.Learn More
You can submit new language translations by creating a PR on this GitHub repo:https://github.com/unlayer/translations. Translations managed byPhraseApp
Copyright (c) 2024 Unlayer.MIT Licensed.
About
Drag-n-Drop Email Editor Component for Angular
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors7
Uh oh!
There was an error while loading.Please reload this page.