Skip to content

Commit

Permalink
Add team email to the contact form in case people would prefer to use…
Browse files Browse the repository at this point in the history
… that
  • Loading branch information
andrewtavis committed May 20, 2024
1 parent 5852fa0 commit 414bd4c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
5 changes: 3 additions & 2 deletions frontend/i18n/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -533,8 +533,9 @@
"pages.help.contact.section-1-paragraph-1-1": "Thanks for your interest in connecting with the activist.org team. Please consider joining the",
"pages.help.contact.section-1-paragraph-1-3": "for simple inquiries and suggestions. The community including the development team would be happy to help! Feature requests should also be sent via our open-source codebase",
"pages.help.contact.section-1-paragraph-1-5": ". Go to \"Issues\" and select \"New issue\" to get started.",
"pages.help.contact.section-1-paragraph-2-1": "For other inquiries, please use the contact form on this page. In using this form we ask that you respect our",
"pages.help.contact.section-1-paragraph-2-2": "community code of conduct",
"pages.help.contact.section-1-paragraph-2-1": "For other inquiries, please use the contact form on this page or email us at",
"pages.help.contact.section-1-paragraph-2-2": "In using this form we ask that you respect our",
"pages.help.contact.section-1-paragraph-2-3": "community code of conduct",
"pages.help.contact.send": "Send",
"pages.help.contact.send-form-aria-label": "Send your message to the activist.org team email",
"pages.help.contact.subject-label": "Subject",
Expand Down
15 changes: 11 additions & 4 deletions frontend/pages/help/contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,24 @@
</p>
<p>
{{ $t("pages.help.contact.section-1-paragraph-2-1") }}
<a class="focus-brand link-text" href="mailto:[email protected]">
[email protected]
<Icon
:name="IconMap.EXTERNAL_LINK"
size="1em"
style="vertical-align: baseline" /></a
>.
{{ $t("pages.help.contact.section-1-paragraph-2-2") }}
<a
class="focus-brand link-text items-center"
href="https://github.com/activist-org/activist/blob/main/.github/CODE_OF_CONDUCT.md"
target="_blank"
>
{{ $t("pages.help.contact.section-1-paragraph-2-2") }}
{{ $t("pages.help.contact.section-1-paragraph-2-3") }}
<Icon
:name="IconMap.EXTERNAL_LINK"
size="1em"
style="vertical-align: baseline"
/> </a
style="vertical-align: baseline" /></a
>.
</p>
</div>
Expand Down Expand Up @@ -346,7 +353,7 @@ const sendEmail = async () => {
message.value.trim().length > 0
) {
await mail.send({
from: email.value,
from: "[email protected]",
subject: `activist contact form: ${subject.value}`,
text: message.value,
});
Expand Down

0 comments on commit 414bd4c

Please sign in to comment.