This article explains how and where you can set up your personal signature in Personio, and when it will be used.
Set up your email signature in Personio
To set up your personalized email signature, follow these steps:
- Click on your name at the bottom left of the main menu bar, and go to Personal settings > Email and click Edit.
- Click on More text > Code view and copy and paste in an HTML-formatted signature. You can make as many HTML changes as you like.
Format your email signature in HTML
You can use various HTML online editors to create and format your signature. Among other things, you may want to use the following tags to customize your code:
Tag | Description |
<br> | Add a line break or blank line. |
<a href="URL">Name of the link to your URL</a> | Insert a URL. |
<img src="publicly available URL for your image" alt="description of your image"> | Use the src (source) attribute to insert an image that is located behind a publicly accessible URL. The text that is entered as an alt (alternative) attribute will be displayed if the image cannot be retrieved. |
width="100" e.g. <img src="publicly available URL for your image" alt="description of your image" width="100"> |
Define the size of your logo. If you modify the width, the height will be scaled automatically. If you would like to adjust the size based on the height of your logo, use the height attribute. |
| Add a space that won't allow a line break at its position. |
<div style="font-weight:bold;">Hannah Heinrich</div> |
Use different styles (font, font size). For example, if you would like to bring out your name, surround it with the div tag and add the style attribute. This will apply the desired style. More style ideas can be found here, for example, or you may want to browse similar pages. |