UBB.Dev
Posted By: sundance Trying to put a banner ad on email template - 05/14/2018 5:57 PM
Hello,

I am trying to put a banner ad on email template. I have done this before, but since the upgrade I have not. What I would like is the name of the template or whatever it is for the email notifications and put a banner on the bottom of the email.

Please help! Mike
Posted By: Gizmo Re: Trying to put a banner ad on email template - 05/14/2018 7:17 PM
Note that modifications to the stock package are not supported by UBBCentral.

You'd be looking at email_text.tpl and email_html.tpl, which cover HTML and text emails. Be sure to use a full URL to any images that you include in any of the templates (as a relative URL doesn't include your domain name).

While I was talking with Isaac, he had mentioned that you could try editing one of the language strings to display an image, if that worked with the layout you were planning.
OK, thank you!
I tried it and I dont think I am doing it correctly.

This is the code in that template,
{*
Version: 7.6.0
Purpose:
Future:
*}
{if $header}
{$header}
{/if}
{if $salute}{$salute}{/if}
{$content}
{if $posts}
{section name=ind loop=$posts}
{$posts[ind].subject}
{$posts[ind].body}
{/section}
{/if}
{if $footer}
---------------------------------------------------------------------------------
{$footer}
{/if}

This is the code I am trying to add,
/* BODY HERE */
$body = <<<EOF
<!--Begin ClixTrac.com Banner Code -->
<a href="http://www.clixtrac.com/banner/click.php?banner=177513" target="_blank">
<img src="http://www.clixtrac.com/banner/177513.png" alt="FREE DESI Labeling Software - Click Here!" title="FREE DESI Labeling Software - Click Here!" border="0" /></a>
<!--End ClixTrac.com Banner Code -->
EOF;
Any advise?
Posted By: Gizmo Re: Trying to put a banner ad on email template - 05/17/2018 8:03 PM
So, then place:
Code
<!--Begin ClixTrac.com Banner Code -->
<a href="http://www.clixtrac.com/banner/click.php?banner=177513" target="_blank">
<img src="http://www.clixtrac.com/banner/177513.png" alt="FREE DESI Labeling Software - Click Here!" title="FREE DESI Labeling Software - Click Here!" border="0" /></a>
<!--End ClixTrac.com Banner Code -->

Within the file where you'd like it to display. The below bits are only used within your Content Islands.
Code
/* BODY HERE */
$body = <<<EOF
EOF;
© UBB.Developers