You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 :
and here is the result in an online template viewer :
Is not everything in the data.html from the response of extractHTML? What am I missing here?
The text was updated successfully, but these errors were encountered:
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
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 :

and here is the result in an online template viewer :

Is not everything in the data.html from the response of extractHTML? What am I missing here?
The text was updated successfully, but these errors were encountered: