PDA

View Full Version : vbmail as html


BRotondi
10-29-2009, 09:18 PM
Hello!

I'm using some Plugins with code like this
vbmail($vbulletin->options['webmasteremail'], $BSubject,
'User: $vbulletin->userinfo['userid']\r\n'
. [...]
, true);
It would be nice to use this instead:
vbmail($vbulletin->options['webmasteremail'], $BSubject,
'<a href="http://sinnimleben.net/forum/member.php?u=' . $vbulletin->userinfo['userid'] . '">User: $vbulletin->userinfo['userid']</a>\r\n'
. [...]
, true);
But there seems no html-support in class_mail.php and I did not found any alternate way...

Thanks for any help!
Bruno

But how to