diff --git a/README.rst b/README.rst index 518ff69..313be6f 100644 --- a/README.rst +++ b/README.rst @@ -1,9 +1,9 @@ -Email Template +Attendee email placeholder ========================== This is a plugin for `pretix`_. -Short description +Lets you use the {attendee_email} placeholder for email content that corresponds to an order's position. Development setup ----------------- diff --git a/pretix_email_template_plugin/apps.py b/pretix_email_template_plugin/apps.py index c4bc9aa..c2847e3 100644 --- a/pretix_email_template_plugin/apps.py +++ b/pretix_email_template_plugin/apps.py @@ -13,9 +13,9 @@ class PluginApp(PluginConfig): verbose_name = "Email template helper" class PretixPluginMeta: - name = gettext_lazy("Email Template") - author = "Your name" - description = gettext_lazy("More email template placeholders, such as {attendee_email}") + name = gettext_lazy("Attendee email placeholder") + author = "0xPARC team" + description = gettext_lazy("Lets you use the {attendee_email} placeholder for email content that corresponds to an order's position.") visible = True version = __version__ category = "FEATURE"