{{link-base}}

The {{link-base}} tag creates a URL to a resource in the built-in http server. This allows for the placement of additional resources, which can be referenced in the email messages (formatted as HTML), on the built-in server. For example, you might want to embed a company logo in each email notification.

Attributes

None.

Examples

The following excerpt:

<IMG height="73" src="{{link-base}}/logo.gif" width="287" align="center">

is converted to:

<IMG height="73" src="http://agent_server:8080/logo.gif" width="287" align="center">

This results in the logo.gif file to be pulled from the virtual root directory of the http server built into StarTeam Notification Agent.

Back to top