diff --git a/ghost/admin/app/components/modal-post-success.hbs b/ghost/admin/app/components/modal-post-success.hbs
index c97df2a9e4..88fd6afbdc 100644
--- a/ghost/admin/app/components/modal-post-success.hbs
+++ b/ghost/admin/app/components/modal-post-success.hbs
@@ -24,7 +24,7 @@
- {{#if (not (and this.post.isPublished (not this.post.emailOnly)))}}
+ {{#if (or (not this.post.isPublished) this.post.emailOnly (or this.post.hasEmail this.post.willEmail))}}
{{#if this.post.isSent}}
It
@@ -34,7 +34,13 @@
Your {{this.post.displayName}}
{{/if}}
{{if this.post.isScheduled "will be" "was"}}
- {{if this.post.emailOnly "sent to" (if this.post.willEmail "published on your site, and sent to" "published on your site")}}
+ {{#if this.post.emailOnly}}
+ sent to
+ {{else if (or this.post.hasEmail this.post.willEmail)}}
+ published on your site and sent to
+ {{else}}
+ published on your site
+ {{/if}}
{{#if (or this.post.hasEmail this.post.willEmail)}}
{{#let (members-count-fetcher query=(hash filter=this.post.fullRecipientFilter)) as |countFetcher|}}