vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Administrative and Maintenance Tools - Send HTML Email to Users (https://vborg.vbsupport.ru/showthread.php?t=120069)

akanevsky 07-25-2006 05:42 PM

I don't know what you are talking about. This mod integrated into vB's admincp "send e-mails" page, the only thing it changes is that text e-mails become html. Whatever else you have installed should continue working.

manuka 07-26-2006 05:44 AM

It's ok - I found what I was looking for... I'll still look at installing this though. Seems very useful at this stage!

Jesus Chio 08-02-2006 04:06 PM

I can not make it work.

I edited the email file with the 2 mods, edited the two templates, uploaded the file...

Do I have to change permissons or something else?

And I am getting this error:


Database error in vBulletin 3.5.1:

Invalid SQL:

SELECT user.userid, user.usergroupid, user.username, user.email, user.joindate, user.htmail,
useractivation.activationid
FROM user AS user
LEFT JOIN userfield AS userfield ON (userfield.userid = user.userid)
LEFT JOIN usertextfield AS usertextfield ON (usertextfield.userid = user.userid)
LEFT JOIN useractivation AS useractivation ON (useractivation.userid = user.userid AND useractivation.type = 0)
WHERE
1=1 AND user.username = 'xxxxx' AND (user.usergroupid = 6)
AND user.email <> ''
AND (options & 16)
ORDER BY userid
LIMIT 0, 500;

MySQL Error : Unknown column 'user.htmail' in 'field list'
Error Number : 1054
Date : Wednesday, August 2nd 2006 @ 07:34:56 PM
Script : http://www./foros/admincp/email.php
Referrer : http://www./foros/admincp/email.php?do=start
IP Address : xxxxx
Username :xxxx
Classname : vb_database

newbe_haselina 08-05-2006 09:13 AM

Hi there,

can you please help a newbe :cross-eyed: ?

I just installed the hack and at least there is no error message. But anyhow either I understand the functionallity wrong, or I am doing something stupid.

Just sent out a mail over "send Email to user" in the AdminCP. Put in some "test-text" but the email looks as a plaintext one. Can you help me and tell me how to use this hack? I thought the emails would look like my forum-style, somehow?

Thanks a lot in advance for helping me,
Kind regards
sabine

rollo tamasi 08-05-2006 10:32 PM

How can you set it so that the "receive html emails" box is automatically ticked?
/installed

akanevsky 08-07-2006 03:48 PM

On registration?

Eagle Creek 08-08-2006 01:21 AM

WOW!

Loveley!

Thankyou!

I will install!

GreysAnatomy 08-15-2006 11:20 AM

I used to have this installed on my forum but I've upgraded to vB 3.6 recently. Will it work there too or are you planning on updating?

akanevsky 08-15-2006 01:05 PM

Should work with 3.6.

GreysAnatomy 08-16-2006 06:07 AM

I installed it on 3.6 but couldn't find the modification in the register template, so I didn't do this step. But still, the box in the AdminCP where I used to check or uncheck 'HTML Email' still won't show up.

All the other steps were done as explained.

--------------------------
Me again. I managed to find the code inside the register template [vB 3.6]:

Code:

<tr>
                                        <td>
                                                $vbphrase[administrators_may_send_email]
                                        </td>
                                </tr>

I just added the hack codes above and everything is working fine. Just thought I'd let you know.

The checkbox inside the AdminCP still doesn't show up though.

DeeperImage 08-17-2006 01:45 PM

Is this compatible with 3.6 Gold yet?

GreysAnatomy 08-17-2006 02:01 PM

Wasn't on my 3.6.0, so I assume it isn't.

FamilyCorner 08-20-2006 02:25 PM

Quote:

Originally Posted by Psionic Vision
[SQL]UPDATE user SET htmail = 1[/SQL]

I have a question about this. I don't have access to MYSQL, that's all done by my server guy. Is there a way to run this query and reset all users to HTML email through the admin panel instead? I see under Maintenance there is an option called Execute SQL Query, but I don't dare do it until I know for sure as it says "Once a query is executed it can not be reversed". Any help on this would be MOST appreciated!

2nd question: I am assuming you need to paste the raw html into the message box if you want anything in your email to be bold, color, or hyperlinked. Is that assumption correct? I tested that and it works fine, however when I switched back to plain text on my user account and did the text again, I am not getting regular plain text, I am receiving raw html in the email text. What I would like to do (bold, color and all that doesn't really matter) is be able to link the title of a thread so that I don't have to include the hyperlink separately. For example, I would like it to look like this:

Thread title here
Thread description, blah blah blah blah blah
blah blah blah blah blah blah blah blah


instead of this, which is what I currently do in plain text:

Thread title here
Thread description, blah blah blah blah blah
blah blah blah blah blah blah blah blah
http://www.hyperlinkofthreadhere.com

Thanks for the great hack, I hope this will work for me! :)

akanevsky 08-20-2006 09:32 PM

Quote:

I have a question about this. I don't have access to MYSQL, that's all done by my server guy. Is there a way to run this query and reset all users to HTML email through the admin panel instead? I see under Maintenance there is an option called Execute SQL Query, but I don't dare do it until I know for sure as it says "Once a query is executed it can not be reversed". Any help on this would be MOST appreciated!
That's correct, no query can be reverted. It is safe to run the query through there though.

FamilyCorner 08-20-2006 10:09 PM

Quote:

Originally Posted by FamilyCorner
2nd question: I am assuming you need to paste the raw html into the message box if you want anything in your email to be bold, color, or hyperlinked. Is that assumption correct? I tested that and it works fine, however when I switched back to plain text on my user account and did the text again, I am not getting regular plain text, I am receiving raw html in the email text. What I would like to do (bold, color and all that doesn't really matter) is be able to link the title of a thread so that I don't have to include the hyperlink separately. For example, I would like it to look like this:

Thread title here
Thread description, blah blah blah blah blah
blah blah blah blah blah blah blah blah


instead of this, which is what I currently do in plain text:

Thread title here
Thread description, blah blah blah blah blah
blah blah blah blah blah blah blah blah
http://www.hyperlinkofthreadhere.com

Thanks for the great hack, I hope this will work for me! :)

Thanks very much for the answer regarding the SQL query! :)

Any idea the answer to the question above? Again thanks!

Khamis 08-21-2006 03:04 AM

Hello,
thank you for this nice hack. Actually, I'm looking for some Modifications, I hope you can help me with it!

1) I would like everyone receive HTML email (there is no option!), and it should apply to everyone, so I don't need to ask them to change to html!

2) Activation email, can you make it also wrok with HTML!

3)How can I totally change the email templates!

Thank you,
Khamis

FamilyCorner 08-21-2006 04:08 AM

Quote:

Originally Posted by GreysAnatomy
But still, the box in the AdminCP where I used to check or uncheck 'HTML Email' still won't show up.

Just thought I'd let you know.The checkbox inside the AdminCP still doesn't show up though.

I think this might be one of my problems. I do not see any option in the admin panel when sending an email to users to select html or plain text. So I was just assuming that I had to code in raw html. Am I missing something?

I am running 3.5.1 and have set my admin panel to every skin there is including VB 2 Default and none have this option. Please help, I would love to start using this! :)

FamilyCorner 08-21-2006 04:11 AM

Quote:

Originally Posted by FamilyCorner
I am running 3.5.1 .....

Sorry, me again :( Is this why I am having trouble with this? Because I am still running 3.5.1?

Khamis 08-21-2006 08:14 AM

Quote:

Originally Posted by FamilyCorner
I think this might be one of my problems. I do not see any option in the admin panel when sending an email to users to select html or plain text. So I was just assuming that I had to code in raw html. Am I missing something?

I am running 3.5.1 and have set my admin panel to every skin there is including VB 2 Default and none have this option. Please help, I would love to start using this! :)

Aslo me, I'm running 3.5.5 :)

dutchbb 08-29-2006 11:23 AM

Just installed this on a 3.6 board, but what is changed in admincp? Where can I send the html emails please?

Thank you

GreysAnatomy 08-30-2006 05:36 AM

It didn't work on my 3.6.0 board. There should be another box right below the one where you put in the content, a box where you can choose if you wanna send out HTML or normal email. But that box doesn't appear in 3.6.0, sadly. :(

dutchbb 08-30-2006 08:33 AM

Too bad, well let's hope this will be ported soon.

GreysAnatomy 08-30-2006 11:17 AM

I've searched like a mad person and finally found the hack that was posted over at vB Hackers. Try this link, worked perfectly fine for me.

navjotjsingh 09-09-2006 06:44 PM

Quote:

Originally Posted by GreysAnatomy
I've searched like a mad person and finally found the hack that was posted over at vB Hackers. Try this link, worked perfectly fine for me.

This mod is here also at vbulletin.org: https://vborg.vbsupport.ru/showthread.php?t=99910

And no need for changing the code..the same code will work for 3.6.0!

FamilyCorner 09-09-2006 09:22 PM

Quote:

Originally Posted by FamilyCorner
I think this might be one of my problems. I do not see any option in the admin panel when sending an email to users to select html or plain text. So I was just assuming that I had to code in raw html. Am I missing something?

I am running 3.5.1 and have set my admin panel to every skin there is including VB 2 Default and none have this option. Please help, I would love to start using this! :)

I didn't see an answer to this yet. Is it possible to use this effectively in 3.5.1? I am not quite ready to upgrade to 3.6 yet, so any help would be appreciated :)

akanevsky 09-10-2006 02:01 AM

Quote:

Originally Posted by navjotjsingh
This mod is here also at vbulletin.org: https://vborg.vbsupport.ru/showthread.php?t=99910

And no need for changing the code..the same code will work for 3.6.0!

That's not the same hack though. It has less features.

Quote:

Originally Posted by FamilyCorner
I didn't see an answer to this yet. Is it possible to use this effectively in 3.5.1? I am not quite ready to upgrade to 3.6 yet, so any help would be appreciated :)

This hack should work fine on 3.5.1.

navjotjsingh 09-10-2006 06:24 AM

So will your mod then work with 3.6.0 also?

FamilyCorner 09-10-2006 12:53 PM

Quote:

Originally Posted by Psionic Vision
This hack should work fine on 3.5.1.

Well it installed just fine and I can send html email, but the problem is that there isn't anything in the control panel that gives me the option to choose whether I want to send plain text or html. So if I paste in the raw html it's fine, however, then the plain text users get a bunch of raw html in their mailbox. If I send it plain text without any html coding, the html users get it but the links don't work.

Is there supposed to be something in the control panel, like is the text box where you put the message, is that supposed to have a WYSIWYG editor or something?

I have a feeling something is missing because the way it stands now I can't use it. :(

akanevsky 09-10-2006 02:32 PM

Yes, this hack is not really finished... Unfortunately, I don't have time fix the few issues that it has right now, but I will when I can.

FamilyCorner 09-10-2006 02:37 PM

.... deleted (oops) LOL

FamilyCorner 09-10-2006 02:38 PM

Quote:

Originally Posted by Psionic Vision
Yes, this hack is not really finished... Unfortunately, I don't have time fix the few issues that it has right now, but I will when I can.

Well I'm relieved it wasn't something I had done :) I will stay subscribed and watch for updates. Thank you for all you do!

kpr 09-14-2006 06:06 AM

Works a treat thanks.

Snake 09-18-2006 11:45 AM

I hope this is going to work on 3.6 too.

The Chief 11-02-2006 03:08 PM

Does this work with 3.6??

lafsunlmtd 11-02-2006 10:14 PM

i am using 3.62 and it doesn't show any check box for it in the admincp. any help

The Chief 11-03-2006 04:17 PM

Quote:

Originally Posted by lafsunlmtd
i am using 3.62 and it doesn't show any check box for it in the admincp. any help

It isn't supposed to show any checkbox...

darkdiver 11-06-2006 03:44 PM

ok, now can somebody tell me if this hack works with 3.6.2?

Thank you
Eric

lange 11-18-2006 06:13 PM

Any idea if this will work in 3.6.3?

Barakat 11-21-2006 10:42 AM

yes works also on 3.6.3

navjotjsingh 12-22-2006 02:03 AM

Nope it does not work since no checkbox is shown in admin panel to select HTML or Plain Text mail! Anybody knows here to how to show checkbox in 3.6.4?


All times are GMT. The time now is 01:33 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01273 seconds
  • Memory Usage 1,830KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (13)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete