Remove Hyperlink from Greeting Notification Email

Hi,

How can I remove the hyper link of the Name from the Greeting Notification Email Message... I am receiving an email that the message could not be delivered because it was spam... Actually Godaddy rejected it and I was told that their system blocks it because of the hyper link in the message... so how can I remove the hyperlink from <ProfileReference> below?

Thanks

<bx_include_auto:_email_header.html />

<p><b>Dear <RealName></b>,</p>

<p><ProfileReference> sent you a greeting!</p>

<p><ProfileReference> may be interested in you or maybe just wants to say Hello!
</p>

<bx_include_auto:_email_footer.html />

Quote · 15 Aug 2014

Have you looked this page over?

http://www.boonex.com/trac/dolphin/wiki/TutorialHowToPersonalizeYourDolphinSite#point13

ManOfTeal.COM a Proud UNA site, six years running strong!
Quote · 15 Aug 2014

thanks newton27

I know about this page and how get there and edit the template but the problem is that <ProfileReference> which is the name of the profile who sent the greeting is hyperlinked and this is causing some servers to block it... how can I <ProfileReference> just a text, not clickable, i.e. no hyperlink?

Thanks

Quote · 15 Aug 2014

Edit greet.php and find this at about line 161

    $sProfileLink = $sender
        ? '<a href="' . getProfileLink($member['ID']) . '">' . getNickName($sender['ID']) . '</a>'
        : '<b>' . _t("_Visitor") . '</b>';


Change it to this.

    $sProfileLink = $sender
        ? getNickName($sender['ID'])
        : '<b>' . _t("_Visitor") . '</b>';

https://www.deanbassett.com
Quote · 15 Aug 2014
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.