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

Exporting HTML and checking the HTML in a viewer #142

Open
etnmoussillac opened this issue Nov 22, 2024 · 4 comments
Open

Exporting HTML and checking the HTML in a viewer #142

etnmoussillac opened this issue Nov 22, 2024 · 4 comments

Comments

@etnmoussillac
Copy link

Hello,

I am trying to export the HTML of a template to try and see if I can send an email that looks exactly like the template, however it seems I am missing something as the results looks styleless.

Here is the template example I am trying to extract the HTML from :
image

and here is the result in an online template viewer :
image

Is not everything in the data.html from the response of extractHTML? What am I missing here?

@akib1997
Copy link

akib1997 commented Jan 8, 2025

Same issue. Did you get any solution?

@axitpoojara1
Copy link

Same issue. Did you get any solution?

can you tell me how to add with json , i can't add this

@axitpoojara1
Copy link

use this exportHtml() {
this.emailEditor.exportHtml((data: any) => {
const htmlContent = data.html; // Assuming the HTML is inside a html property
const blob = new Blob([htmlContent], { type: 'text/html' });
const link = document.createElement('a');
link.href = URL.createObjectURL(blob);
link.download = 'email-content.html'; // Set the default file name
link.click(); // Trigger the download
});
} it will help but tell me how to import , i have an issue with it

@axitpoojara1
Copy link

@etnmoussillac , @akib1997 and @umairsiddique can you tell me have you write json for this or convert your html into json by code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants