In order to comply with international anti-spam laws and our strict anti-spam policy, you are required to include the sender's physical address in every campaign you send.

 

Therefore, the presence of special attribute ibr-sender-address is validated every time a template is imported or saved.

 

To automatically add the sender's physical address in your campaigns, you need and are required to add the attribute "ibr-sender-address" to any suitable tag in your template.

 

Example:

 

<p ibr-sender-address>Sender's Physical Address</p>

 


The output will look like this:


<p>
	John Doe<br />
	123 Any Street<br />
	Victoria BC V2V 2V2
</p>


Formatting:

If you want the address output to be automatically generated without line break's, you can add the inline attribute as shown below:

 

<p ibr-sender-address="inline">Sender's Physical Address</p>

 

The output will look like this:

 

<p>John Doe, 123 Any Street, Victoria BC V2V 2V2</p>

 

Custom Formatting:


You can override the automatically generated address by adding the custom attribute as shown below:

   

<p ibr-sender-address="custom">
	<strong>John Doe</strong><br />
	123 Any Street<br />
	Victoria BC <br />
	V2V 2V2 CANADA
</p>

   

The output will not be modified, so it will look exactly as it is in your template:

 

<p>
	<strong>John Doe</strong><br />
	123 Any Street<br />
	Victoria BC <br />
	V2V 2V2 CANADA
</p>