PDA

View Full Version : html email from acp


jskoh
09-06-2009, 05:28 PM
hi all,

need some guide here. i have install a mod fro sending email in html format. however, i often have this problem. my text will alway goes like this

Dear user, i want to send out mail. www.domain.com

but i want it in this way

Dear user,

i want to send out mail

www.domain.com

how do i break away the sentense in another line?

jskoh
10-21-2009, 12:26 PM
anybody?

TheLastSuperman
10-21-2009, 12:35 PM
Link to the mod? Most likely just a quick edit adding a <br /> or two of them and save then re-upload or re-import OR update the template and done. We need a link and if it's apid mod you will need to request support on that sites forum or support area if not provide the link here and we'll see what some suggest but the mods author/creator will always be the best person to ask as they are the most familiar with the mod and can quickly answer and provide assistance better than anyone else.

S-MAN

jskoh
10-21-2009, 12:48 PM
current im using a html email mod, however, the message alway goes inline.

TheLastSuperman
10-21-2009, 12:48 PM
current im using a html email mod, however, the message alway goes inline.

Mod link??

jskoh
10-21-2009, 01:13 PM
<a href="https://vborg.vbsupport.ru/showthread.php?t=137537" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=137537</a>

maybe i should with the coder

TheLastSuperman
10-21-2009, 01:59 PM
https://vborg.vbsupport.ru/showthread.php?t=137537

maybe i should with the coder

Ok 3.8.4 code has been updated but I duplicated my email.php renamed to email2.php and tested..

In 3.6 and 3.8 there is:
$vbulletin->GPC['septext'] = nl2br(htmlspecialchars_uni($vbulletin->GPC['septext']));

It can be added when wanting spaces in plain text and normally you can add only a limited # of phrases ($) to be used in plain text but it should in html from what I see.. in your SUBJECT before you start typing add:

<br />

Because it's letting you send them as html so add the spaces (<br />) wherever you want after each sentence or paragraph and change users to send to, to 1 instead of 500 and enter in your username or email and submit, now check your email to see if that worked ;)

Let us know.