From 5df334f9f35032973cd4b15cb326cff8194b8bda Mon Sep 17 00:00:00 2001 From: Mauro Cassani Date: Mon, 4 Nov 2024 16:52:49 +0100 Subject: [PATCH 1/6] New welcome email --- lib/Utils/Email/WelcomeEmail.php | 2 +- lib/View/Emails/Signup/welcome_content.html | 127 ++++++++++++++++---- 2 files changed, 105 insertions(+), 24 deletions(-) diff --git a/lib/Utils/Email/WelcomeEmail.php b/lib/Utils/Email/WelcomeEmail.php index 77ce2cf684..fad8ca2022 100644 --- a/lib/Utils/Email/WelcomeEmail.php +++ b/lib/Utils/Email/WelcomeEmail.php @@ -18,7 +18,7 @@ class WelcomeEmail extends AbstractEmail { */ protected $user; - protected $title = 'Welcome to MateCat!'; + protected $title = 'Welcome to Matecat! Get Started with Your First Project Today'; public function __construct( Users_UserStruct $user ) { $this->user = $user; diff --git a/lib/View/Emails/Signup/welcome_content.html b/lib/View/Emails/Signup/welcome_content.html index ef2a86ab1e..7f9a4d53df 100644 --- a/lib/View/Emails/Signup/welcome_content.html +++ b/lib/View/Emails/Signup/welcome_content.html @@ -1,24 +1,105 @@ +
+
+ + + + + + +
  +
+ + + + + + + + + +
+ + + + + + + +
-

-Dear , -

- -

-Welcome to Matecat, the simple and free translation platform. -

- -

-With Matecat you can translate faster with matches from the best mix of private and public translation memories and machine translation. -

- -

-Learn more about Matecat by: -

-

- - Browsing through the documentation at guides.matecat.com
- - Watching one of the videos in our YouTube channel
-

- -

- For any question or suggestion, don't hesitate to get in touch with our team at support@matecat.com. -

+

+ Dear , +

+ +

+ Welcome to Matecat! We're thrilled to have you on board and excited to help you get the most out of it.

+ +

+ To help you hit the ground running, we've prepared a quick guide on how to set up your first project.
Follow these simple steps and you'll be on your way to smoother, faster, and more accurate translations. +

+ +

+ Getting Started with Matecat + +

+
    +
  • Matecat and log in to your account.
  • +
  • Click the "More settings" button to adjust the project settings according to your needs. You can create translation memories and use them for your projects, choose a machine translation engine and adjust other advanced settings.
  • +
  • many more.
  • +
  • +
  • +
  • +
  • Start translating! + + +

    For additional questions, please refer to our user guide.
    + Remember, the Matecat team is always here to support you on your translation journey, so don't hesitate to reach out to us.

    +
+

Happy translating!
The Matecat team

+

+ +

+
+
+ + +
+ + + + + + + +
+
Report Abuse.
+

+
+ + +
+ + + + + +

+
+ Powered by + + + +
+
+ + + +
+
 
+
+ + +
\ No newline at end of file From 8a18b168a53210b3df6faec8573cc994fb0069b2 Mon Sep 17 00:00:00 2001 From: Mauro Cassani Date: Mon, 4 Nov 2024 17:58:04 +0100 Subject: [PATCH 2/6] fixed email --- lib/View/Emails/Signup/welcome_content.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/View/Emails/Signup/welcome_content.html b/lib/View/Emails/Signup/welcome_content.html index 7f9a4d53df..dbd597c453 100644 --- a/lib/View/Emails/Signup/welcome_content.html +++ b/lib/View/Emails/Signup/welcome_content.html @@ -31,14 +31,14 @@

Start translating!
From 54945ed0b6ee043e47c3b61f6202f086c2776213 Mon Sep 17 00:00:00 2001 From: Mauro Cassani Date: Tue, 5 Nov 2024 12:17:05 +0100 Subject: [PATCH 3/6] Fixed email text --- lib/View/Emails/Signup/welcome_content.html | 35 --------------------- 1 file changed, 35 deletions(-) diff --git a/lib/View/Emails/Signup/welcome_content.html b/lib/View/Emails/Signup/welcome_content.html index dbd597c453..e4d69542df 100644 --- a/lib/View/Emails/Signup/welcome_content.html +++ b/lib/View/Emails/Signup/welcome_content.html @@ -47,14 +47,7 @@ Remember, the Matecat team is always here to support you on your translation journey, so don't hesitate to reach out to us.

- - -

Happy translating!
The Matecat team

-

-

- - @@ -63,34 +56,6 @@ -
- - - - - - - -
-
Report Abuse.
-

-
- - -
- - - - - -

-
- Powered by - - - -
-
From 97667b25803ed78b795168ed6ee169539d5ba1f4 Mon Sep 17 00:00:00 2001 From: Mauro Cassani Date: Wed, 13 Nov 2024 11:59:01 +0100 Subject: [PATCH 4/6] General email skeleton --- lib/Utils/Email/WelcomeEmail.php | 2 +- lib/View/Emails/skeleton.html | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/Utils/Email/WelcomeEmail.php b/lib/Utils/Email/WelcomeEmail.php index fad8ca2022..78f1593d62 100644 --- a/lib/Utils/Email/WelcomeEmail.php +++ b/lib/Utils/Email/WelcomeEmail.php @@ -36,7 +36,7 @@ protected function _getTemplateVariables() { protected function _getLayoutVariables( $messageBody = null ) { $vars = parent::_getLayoutVariables(); $vars[ 'title' ] = $this->title; - $vars[ 'closingLine' ] = 'Join the Evolution!'; + $vars[ 'closingLine' ] = 'Happy translating!'; return $vars; } diff --git a/lib/View/Emails/skeleton.html b/lib/View/Emails/skeleton.html index 6ca234d719..89a0268002 100644 --- a/lib/View/Emails/skeleton.html +++ b/lib/View/Emails/skeleton.html @@ -320,10 +320,7 @@


- Matecat - -

-

- + The Matecat team -

@@ -347,6 +344,7 @@

Powered by + From 23b0df530ec6354615529071672ae9f22d9be9f6 Mon Sep 17 00:00:00 2001 From: Mauro Cassani Date: Wed, 13 Nov 2024 18:31:42 +0100 Subject: [PATCH 5/6] Added logo to the skeleton --- lib/View/Emails/skeleton.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/View/Emails/skeleton.html b/lib/View/Emails/skeleton.html index 89a0268002..72b84ad82a 100644 --- a/lib/View/Emails/skeleton.html +++ b/lib/View/Emails/skeleton.html @@ -304,6 +304,13 @@ + + + @@ -351,7 +352,6 @@

+ + + +
From d45350ee7101ba492735191cef9cc3de02aba859 Mon Sep 17 00:00:00 2001 From: Mauro Cassani Date: Fri, 15 Nov 2024 11:04:17 +0100 Subject: [PATCH 6/6] skeleton --- lib/View/Emails/skeleton.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/View/Emails/skeleton.html b/lib/View/Emails/skeleton.html index 72b84ad82a..58e41c6494 100644 --- a/lib/View/Emails/skeleton.html +++ b/lib/View/Emails/skeleton.html @@ -309,6 +309,7 @@ +
Powered by -