react-email-editor icon indicating copy to clipboard operation
react-email-editor copied to clipboard

Unable to enable User Saved Blocks feature

Open MobeenAshraf opened this issue 5 years ago • 5 comments

As per the documentation in this link, providing user object in unlayer's init method should enable 'User Saved Blocks` feature.

However, when providing user's object via options props like below, it should pass the user's object to init method.

<EmailEditor
 ref={editor => (this.editor = editor)}
 options = { 
     user: {  id: 13 }
  }
 />

Still after adding this, I cannot see the feature enabled. On doc, it says about user having unique ID maybe it is something because of it.

MobeenAshraf avatar Mar 21 '20 15:03 MobeenAshraf

options should be a object. For example:

<EmailEditor
  ref={editor => (this.editor = editor)}
  options = {{
    user: {  id: 13 }
  }}
/>

adeelraza avatar Mar 27 '20 11:03 adeelraza

I am having the same problem, did you ever find a solution?

@MobeenAshraf @adeelraza

nickjiunchetti avatar Oct 28 '22 20:10 nickjiunchetti

It's been almost three years, and still, there is not a single answer from the developers!

sorsaffari avatar Jan 18 '23 13:01 sorsaffari

Has anyone found a solution? Still no answer and even their own demos do not show this working despite it still being listed in their documentation.

bkswindell avatar Sep 27 '23 00:09 bkswindell