How to personalize the appearance of messages sent from the system

Created: 2021-07-15
Last updated: 2021-11-09

In order to personalize messages sent to clients with the invoice, go to Settings> Account settings, then choose the Invoice sending option from the left menu.

Then select own e-mail template. After selecting this option, you can change both the text of the message sent and its appearance.

Changes in the appearance are made using the CSS code, which is added to the message.

An example of a simple modification of message template where you change the font to Georgia, change the color to gray and set the font size to 15 pixels:


<div style="font-family: Georgia,; color:#333333; font-size:15px">
<p style="font-size:20px;color:#000">Hello,</p>
here is the invoice no <strong>{{number}}</strong>  of {{total_price_gross}} .
You can view it at: {{view_url}}
{{footer}}
</div>



Note: it is important to close once opened <div> element with closing tag: </div>

check if invoice sent 2
 

Create unlimited invoices and more with InvoiceOcean. Start your 30-day free trial.

Sign up free


Back


Add Comment