vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   [vB v2.2.1] SMTP Support and MIME/HTML Emails! (https://vborg.vbsupport.ru/showthread.php?t=33784)

fastforward 01-03-2002 10:00 PM

This hack adds additional email features to vB 2.2.1
  • Allows you to send mail via SMTP instead of using the site wide settings
    in your php.ini.
  • Allows you to send email as MIME/HTML with a plain text part allowing
    almost all email clients to view the email in a readable format.
  • Any combination of the above are selectable via the control panel.
Latest version is 20020106

I initially wrote this to enable SMTP email and get around a problem I was having with my emails not being delivered to AOL users. I believe it must have something to with my php.ini. But then I decided I might as well expand on the idea.

In addition to the SMTP capability, this hack adds MIME/HTML capablities to vB. There is no need to worry whether a user can read HTML. You simply send send both versions in the same MIME mail. The email client will display whatever it can or wants.

I've noticed a couple of hacks that allow you to send HTML email from vB. Both of them simply add the Content Type: text/html in the header and send it as normal. This is all very well for a handful of the newest email clients, but if the recipient can't or doesn't want to recieve HTML mail, the message is almost unreadable. The two obvious solutions are to either make it user selectable or send both types in MIME format. This hack does both. It allows users to select whether they receive HTML or text emails via the user control panel but sends MIME as default.

This approach required a quite lot of code changes, so for those of you don't want the headache of changing all the code, this hack has two levels of install. You can do the simple install first, which gives most of the features without the user selectable option. If you like it, you can do the second level install later.

Full instructions for the second level install are in the attached zip.



Overview:
There are two levels of installation to this hack. The first method is simple. The SQL commands will make the global settings visible in the control panel under 'vBulletin Options => Email Options' section. It also creates an example template for testing the new reply notifications.

The uploaded file contains all the functions/classes required.

It is then just a case of adding a require() in both global.php files and replacing the existing mail() calls in the code with the new mime_mail(). All the other parameters in the function call remain the same. Can't get much easier than that! At this level, you will be able to opt whether to send mail via SMTP or the method specified in your existing php.ini file. HTML mail can also be sent from any form that accepts input, ie. the mass emailer. Simply enter HTML in the form and the hack will generate the plain text automatically and send a complete MIME message to all recipients. HTML is either globally on or off via the control panel with this level of installation.

The second level of installation requires that you add a few more parameters to the mime_mail() function in addition to what was there originally. This allows you to use HTML templates to send mail where appropriate. It also allows the user to select whether they should recieve HTML mail regardless of your CP settings. You can make these changes without creating additional custom templates immediately. Everything will work as in the basic install. You can then add the templates at your leisure by creating a new one with the same name and '_html' at the end. There a few more lines of code to add for this level of install but it's still pretty straightforward.


The mime_mail() function can be used in other scripts/hacks and takes the
following parameters:
Recipients email address
Email subject
Plain text message (optional) defaults to auto generated from HTML message
From Header (optional) defaults to $bbtitle Mailer <$webmasteremail>
HTML Message (optional) defaults to auto generated from text message
Force Text Only (optional) defaults to FALSE

If either the plain text or the html parameter is null, the correct format is generated automatically from the other one. Obviously at least one of the parameters must be there. :)



Quick Example:
These two lines will replace the existing mail() function and provide
HTML mail via a new template you created. It will also use SMTP if
specified in the control panel.
Code:

eval("\$emailmsghtml =
      \"".gettemplate("email_notify_html",1,0)."\";");
mime_mail($touser[email],
          $emailsubject,
          $emailmsg,
          $emailmsghtml);


nuno 01-04-2002 05:09 AM

many tx Paul
wonderful hack

PS: will this be compatible with bira's Send Random Password instead of Activation Code Hack?
tia ;)

fastforward 01-04-2002 05:19 AM

Quote:

Originally posted by nuno
many tx Paul
wonderful hack

PS: will this be compatible with bira's Send Random Password instead of Activation Code Hack?
tia ;)

I don't see why not. The interface to this hack is really just a replacement for the mail() call, so any thing that sends mail should be able to use this.

Either way... if it's not compatible, I'll make it so :)

(shuffles off to check Bira's hack)

fastforward 01-05-2002 03:14 AM

This hack has been updated.

It's now fully featured and allows users to override your control panel setting as to whether they should accept MIME/HTML mail.

The documentation has been updated and completed with detailed instructions on editing all the mail() calls to support HTML templates.

There are some changes to the parameter list for the mime_mail() function call, so if you've installed it already, you'll need to revisit the code changes. Any future updates should be limited to the included classes and won't affect the code changes.

In short... it's done :)

Please let me know if you come across any bugs. It's very difficult to fully test this kind of hack without emailing hundreds of different people.

nuno 01-05-2002 03:21 AM

okie dokie Paul
i'll test this tomorrow
*too tired bed time*

nuno 01-06-2002 04:11 PM

hi Paul
i cant even install this hack to fully test it
Warning: Cannot add header information - headers already sent by (output started at vb\admin\mime_html_smtp.inc:948) in vb\admin\functions.php on line 1491

i cant even login to admin CP now *sux* :(

nuno 01-06-2002 04:27 PM

after hitting login i get this:

Warning: Cannot add header information - headers already sent by (output started at vb\admin\mime_html_smtp.inc:948) in vb\admin\functions.php on line 1491

Warning: Cannot add header information - headers already sent by (output started at vb\admin\mime_html_smtp.inc:948) in vb\admin\functions.php on line 1491

Warning: Cannot add header information - headers already sent by (output started at vb\admin\mime_html_smtp.inc:948) in vb\admin\global.php on line 139

Warning: Cannot add header information - headers already sent by (output started at vb\admin\mime_html_smtp.inc:948) in vb\admin\global.php on line 165

Hang on a sec

:(
then i get kicked to login page again :confused:

nuno 01-06-2002 04:31 PM

whoa found it
you need to remove last couple of lines at mime_html_smtp.inc file just after ?> :)

nuno 01-06-2002 05:07 PM

arrrghhh i guess i'm blind
where do i set it to send HTML instead of plain text?

fastforward 01-06-2002 05:15 PM

Quote:

Originally posted by nuno
arrrghhh i guess i'm blind
where do i set it to send HTML instead of plain text?

In The mail control panel select 'vBulletin Options' in the Side Panel, then '[Email Options]' at the top of that page.


All times are GMT. The time now is 09:18 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.01824 seconds
  • Memory Usage 1,753KB
  • 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
  • (2)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
  • (10)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