SendWithSES / Drag-and-Drop-Email-Designer

Free, open source, HTML email template editor and no code designer.
https://designer.sendune.com
MIT License
1.28k stars 49 forks source link

Hi Kishore #7

Open Kikovenu opened 4 weeks ago

Kikovenu commented 4 weeks ago

Hi Kishor,

How are you doing?

This is Venu from Portland, OR, USA but originally from Guntur, AP. We're facing issues implementing this editor, as we're using Angular 18, Bootstrap, and .NET 8. Could you please help us out?

Best regards, Venu & Sekhar

Kikovenu commented 4 weeks ago

image

We did according to documentation, here Designer is not loading under Export button, Please review.

Thanks

nkishorchandra commented 3 weeks ago

Hi Venu, Thanks for showing interest in our email designer.

Could you please share the part of the code how you integrated into your app ?

Also, did you add any elements to the template before export ? or was it just blank ?

Kikovenu commented 3 weeks ago

Hi Kishor,

Thank you for your support. Sekhar will be sharing the code details with you. Would it be possible to schedule a Zoom call to discuss and demonstrate the issues we're facing? I'm in the PST time zone (California). Please let me know what works for you. You can reach me at i@venuganga.com.

Best regards, Venu

Kikovenu commented 2 weeks ago

Hi Kishor,

How are you doing? Please respond when you see this message. We need your help in fixing the issue.

Best regards Venu & Sekhar

Kikovenu commented 2 weeks ago

Hi Kishor,

I hope you're doing well!

We have recently started implementing your email designer, i.e., @send-with-ses/ng-email-designer.

@ViewChild(EmailEditorComponent) private emailEditor: EmailEditorComponent;

selectedTemplate: TemplateBean; selectedTemplateType = '';

// To get the HTML output of the template exportHtml() { console.log(this.emailEditor.exportHtml()); this.emailEditor.showHtmlPreview(); }

preview() { this.emailEditor.showPreview(); }

and include the HTML code like below

and

Step2: to use html editor, included the following glob in 'assets' of your angular.json

image.png image

Step3: for the specification you mentioned to import MonacoEditorModule.forRoot() in documentation.

getting an error when I install ngx-monaco-editor-v2, at below line

getXMLHttpRequest(): XMLHttpRequest | ActiveXObject;

Proof: image.png image

I followed the documentation, but I seem to be stuck. Could you please review it and help me identify the issue? A quick response would be greatly appreciated. Thanks

Sekhar

nkishorchandra commented 2 weeks ago

Hi kikovenu, was away on a vacation, hence delay in reply. I'll check this today and get back.

Kikovenu commented 2 weeks ago

Thanks Kishor We appreciate your prompt response...

Venu

nkishorchandra commented 2 weeks ago

@Kikovenu, please include 'scripthost' in lib of tsconfig.json

```
"lib": [
      "es2018",
      "dom",
      "ScriptHost"
    ],
```

that should solve the 'ActiveXObject' issue.

Kikovenu commented 1 week ago

Thank you, We will let you know once we test it