Secure Share Secure share allows for a more secure sharing workflow with a secure HTML email to share content.
Important Notes: Use the secure-email option within the source prop to add a secure share option. The secure share should be the only source option passed into the Share Component. Only use the secure share with the display: inline prop option. The secure share will not display correctly with in a Share Menu. Due to accessbility reasons the size prop will not affect the secure share button.
Demo
[Place secure form here.]
Secure Share
Twig
{% include '@bolt-components-dialog/dialog.twig' with {
  ...
  attributes: {
    id: 'dialog-1'
  },
} only %}

{% set demo_sources_secure = [
  {
    name: 'secure-email',
    attributes: {
      'data-bolt-dialog-target': '#dialog-1'
    }
  }
] %} 

{% include '@bolt-components-share/share.twig' with {
  sources: demo_sources_secure,
  text: 'Secure Share'
} only %}
HTML
Not available in plain HTML. Please use Twig.