b44e937b2f322d26236b659da49a92d7d61c2ad4
[yaffs-website] / vendor / drupal / console-en / translations / generate.plugin.mail.yml
1 description: 'Generate a plugin mail'
2 help: 'The <info>generate:plugin:mail</info> command helps you generate a new Plugin mail.'
3 welcome: 'Welcome to the Drupal Plugin Mail generator'
4 options:
5   module: 'The Module name.'
6   class: 'Plugin class name'
7   label: 'Plugin label'
8   plugin-id: 'Plugin id'
9   inputs: 'Create inputs in a form.'
10   services: 'Load services from the container.'
11 questions:
12   module: 'Enter the module name'
13   class: 'Enter the plugin class name'
14   label: 'Enter the plugin label'
15   plugin-id: 'Enter the plugin id'
16   inputs: common.questions.inputs
17   services: 'Enter your service'
18 examples:
19   - description: 'Generate an email plugin specifying the module name, the class, its label and the plugin id'
20     execution: |
21       drupal generate:plugin:mail  \
22         --module="modulename"  \
23         --class="HtmlFormatterMail"  \
24         --label="Html formatter mail"  \
25         --plugin-id="html_formatter_mail"