diff --git a/ghost/admin/app/components/settings/tips-and-donations.hbs b/ghost/admin/app/components/settings/tips-and-donations.hbs index 482755d3d4..0e3c6406ee 100644 --- a/ghost/admin/app/components/settings/tips-and-donations.hbs +++ b/ghost/admin/app/components/settings/tips-and-donations.hbs @@ -2,7 +2,7 @@

Tips or donations

-

Give your audience a one-time way to support your work

+

Give your audience a one-time way to support your work, no membership required

{{#if this.membersUtils.isStripeEnabled}}
- -
@@ -167,11 +165,10 @@ {{/liquid-if}}
-
+ -

Growth

diff --git a/ghost/staff-service/lib/email-templates/donation.hbs b/ghost/staff-service/lib/email-templates/donation.hbs index 6149e4c98a..46c6907cb9 100644 --- a/ghost/staff-service/lib/email-templates/donation.hbs +++ b/ghost/staff-service/lib/email-templates/donation.hbs @@ -3,7 +3,7 @@ - 💸 Received a donation of {{donation.amount}} from {{donation.name}} + 💰 One-time payment received: {{donation.amount}} from {{donation.name}} {{> styles}} @@ -28,25 +28,22 @@ diff --git a/ghost/staff-service/lib/email-templates/donation.txt.js b/ghost/staff-service/lib/email-templates/donation.txt.js index 26189b8302..39dc293b2d 100644 --- a/ghost/staff-service/lib/email-templates/donation.txt.js +++ b/ghost/staff-service/lib/email-templates/donation.txt.js @@ -1,9 +1,9 @@ module.exports = function (data) { // Be careful when you indent the email, because whitespaces are visible in emails! return ` -Congratulations! +Cha-ching! -You received a donation of ${data.donation.amount} from "${data.donation.name}". +You received a one-time payment from of ${data.donation.amount} from "${data.donation.name}". --- diff --git a/ghost/staff-service/test/staff-service.test.js b/ghost/staff-service/test/staff-service.test.js index ca4879a995..c2a1ec1c43 100644 --- a/ghost/staff-service/test/staff-service.test.js +++ b/ghost/staff-service/test/staff-service.test.js @@ -925,7 +925,7 @@ describe('StaffService', function () { mailStub.calledOnce.should.be.true(); mailStub.calledWith( - sinon.match.has('html', sinon.match('donation of €15.00 from Simon')) + sinon.match.has('html', sinon.match('One-time payment received: €15.00 from Simon')) ).should.be.true(); }); });
-

Congratulations!

-

You received a donation of {{donation.amount}} from {{donation.name}} ({{donation.email}}).

- {{#if memberData}} - - - - - - -
- - - - - - -
View member
-
- {{/if}} +

Cha-ching!

+

You received a one-time payment from {{#if memberData}} + {{donation.name}} ({{donation.email}}) + {{else}} + {{donation.name}} ({{donation.email}}) + {{/if}} + :

+ + + + + + +
+

{{donation.amount}}

+