**Great hack**
:up:
I have two questions for you or anyone with answers.
One - does it send emails to members that have checked the options NOT to receive emails from admin?
Two - how do you change the bburl title color (in the preview email) to a different color from white. Is it a default vB setting?
FYI ONLY -- I found out once the community letters are sent, each latest member link has an error in it. On the sent email, it shows 404 error page pointing to
/member.php?u=2568 and not
http://www.yourwebsite.com/member.php?u=2568
After looking around the files, I was able to figure it by going to the product-c_news_letter XML file to add the
www.yourwebsite.com/ part in the code below
Code:
</div>]]></template>
<template name="c_news_letter_latest_memberbit" templatetype="template" date="1220381286" username="gio~logist" version="1.0.0"><![CDATA[<a href="/member.php?u=$member[userid]">$member[username]</a><if condition="$c_news_letter_latest_members_count != '10'">,</if>]]></template>
<template name="c_news_letter_latest_threadbit" templatetype="template" date="1220601887" username="gio~logist" version="1.0.0"><![CDATA[<div class="smallfont">
<div class="smallfont">
change to
Code:
</div>]]></template>
<template name="c_news_letter_latest_memberbit" templatetype="template" date="1220381286" username="gio~logist" version="1.0.0"><![CDATA[<a href="http://www.yourwebsite.com/member.php?u=$member[userid]">$member[username]</a><if condition="$c_news_letter_latest_members_count != '10'">,</if>]]></template>
<template name="c_news_letter_latest_threadbit" templatetype="template" date="1220601887" username="gio~logist" version="1.0.0"><![CDATA[<div class="smallfont">
<div class="smallfont">
It worked for me so I know it is a right fix and I hope it helps others.