Welcome, Guest. Please login or register.
Did you miss your activation email?
February 12, 2012, 07:18:19 AM

Login with username, password and session length
Search:     Advanced search
Wollen Sie dem WebsiteBaker Team beitreten?
Nähere Informationen finden Sie unter hier und auf unserer neuen Webseite.
149621 Posts in 21098 Topics by 7537 Members
Latest Member: lotte2
* Home Help Search Login Register
Poll
Question: Does Massmail makes sense to you?  (Voting closed: May 01, 2005, 06:47:02 PM)
Yes, add more features and remove Bugs! I want to use it. - 6 (60%)
Yes, but i won't need it. - 4 (40%)
No, you can stop development. - 0 (0%)
No, i do not understand what you're doing! - 0 (0%)
Total Voters: 8

Pages: 1 ... 5 6 [7] 8   Go Down
Print
Author Topic: New Module: "Massmail"  (Read 64084 times)
markywatts

Offline Offline

Posts: 27


« Reply #150 on: May 27, 2008, 07:25:22 AM »

Hi,

I also would like to be able to send Rich Text / HTML emails. Is this possible?

Thanks
Mark
Logged
doc
Guest
« Reply #151 on: May 27, 2008, 08:29:28 AM »

Hello,

yes this is possible by using the phpMailer class. However, the module development seems to be stopped. Have done this for a customer a year ago. If I find the module, I can provide some guidelines for others to update the module accordingly.

Regards Christian
Logged
markywatts

Offline Offline

Posts: 27


« Reply #152 on: May 27, 2008, 10:49:24 AM »

Christian,

That would be brilliant if you could dig out the module, providing some guidelines on how to update.

Thanks
Mark
Logged
Stefek
WebsiteBaker Org e.V.

Offline Offline

Posts: 4753



« Reply #153 on: May 27, 2008, 11:29:02 AM »

yeah,
would be great!

Stefek
Logged

"In a time of universal deceit, telling the truth becomes a revolutionary act."
- George Orwell, Nineteen eighty-four (1984)
doc
Guest
« Reply #154 on: June 02, 2008, 10:20:30 PM »

Hello,

please find attached a modified version of the massmail module file: save.php.

The modified file uses the PHPMailer class for outgoing mails. Modifications are based on massmail module v2.3.4. Tested with WB 2.6.5 (should also work with WB 2.7). To get it work, rename the original save.php to e.g. save.php.org and upload the attached file as save.php.

I will not give support for this version. Feel free to build up on the modifications. If the solution does not work for your purpose, feel free to modify the file or to go back to the original save.php file. If you have no glue what the whole stuff is about, stick with the original version from the addons repository.

Have fun Christian
« Last Edit: June 02, 2008, 10:22:47 PM by doc » Logged
sberghmans

Offline Offline

Posts: 8


« Reply #155 on: June 11, 2008, 11:37:32 AM »

Hi,

I would like to give to possibility to someone registered to send newsletter via the massmail moduke but I don't want him to go through the admin area this means via the frontend.

Is it possible? Are there any workaround?

Thanks in advance.
Logged
eisenzeithaus

Offline Offline

Posts: 17


« Reply #156 on: June 16, 2008, 09:39:27 AM »

Hello,

please find attached a modified version of the massmail module file: save.php.

The modified file uses the PHPMailer class for outgoing mails. Modifications are based on massmail module v2.3.4. Tested with WB 2.6.5 (should also work with WB 2.7). To get it work, rename the original save.php to e.g. save.php.org and upload the attached file as save.php.

I will not give support for this version. Feel free to build up on the modifications. If the solution does not work for your purpose, feel free to modify the file or to go back to the original save.php file. If you have no glue what the whole stuff is about, stick with the original version from the addons repository.

Have fun Christian

Hi Christian,
tahnks for posting the file - I installed the new save.php - how will I now be able to send html mails - can I just paste a html-code into the text-area?
While searching around I found different post concerning the possibility of using an WYSIWYG Editor for sending the mails?!
Is there a new version of the mass mail module I don´t know? I use 2.3.4

thanks for help

sebastian
http://www.websitebaker2.org/forum/index.php?PHPSESSID=2bf7e3af1a0f7a2b857b17addaeb0bd6&action=search2
« Last Edit: June 16, 2008, 09:42:12 AM by eisenzeithaus » Logged
doc
Guest
« Reply #157 on: June 16, 2008, 11:26:01 AM »

Hi,

Quote from: doc
... will not give support for this version. Feel free to build up on the modifications. If the solution does not work for your purpose, feel free to modify the file or to go back to the original save.php file
Maybe other forum members are able to help you on that topic, good luck.

Christian
Logged
Bubber

Offline Offline

Posts: 2


« Reply #158 on: June 23, 2008, 03:13:13 PM »

I've just installed my first WB 2.7 and a bunch of modules. The only one I'm having trouble with is MassMail - I've created a MassMail page, and on the page I get this error:

"Notice: Use of undefined constant user_id - assumed 'user_id' in /webdisk/webdata/kunder/lysnet/htdocs/modules/massmail/modify.php on line 121

Notice: Use of undefined constant user_id - assumed 'user_id' in /webdisk/webdata/kunder/lysnet/htdocs/modules/massmail/modify.php on line 121

Notice: Use of undefined constant user_id - assumed 'user_id' in /webdisk/webdata/kunder/lysnet/htdocs/modules/massmail/modify.php on line 121

Notice: Use of undefined constant user_id - assumed 'user_id' in /webdisk/webdata/kunder/lysnet/htdocs/modules/massmail/modify.php on line 121

Notice: Use of undefined constant user_id - assumed 'user_id' in /webdisk/webdata/kunder/lysnet/htdocs/modules/massmail/modify.php on line 121

Notice: Use of undefined constant user_id - assumed 'user_id' in /webdisk/webdata/kunder/lysnet/htdocs/modules/massmail/modify.php on line 121

Notice: Undefined variable: users_id in /webdisk/webdata/kunder/lysnet/htdocs/modules/massmail/modify.php on line 301
"

HUh? What does that mean? I'll be gratefull for any help.

Logged
doc
Guest
« Reply #159 on: June 23, 2008, 05:20:50 PM »

Hello,

first try to upgrade to latest mass mail version available. In line 121 of modify.php the module access an array element which is not properly quoted, so replace
Code:
$mail_to .= $usr[user_id]
with
Code:
$mail_to .= $usr['user_id']

You should switch off Apache error reporting on servers reachable in the WWW. Check WB backend -> Options -> Advanced Settings -> Error reporting -> set to NONE. Also check php.ini for error_reporting and error level.

As mentioned in this thread before, the massmail module needs to be reworked, but the original author has stopped support.

Christian
Logged
Bubber

Offline Offline

Posts: 2


« Reply #160 on: June 24, 2008, 09:56:16 AM »

Hi Christian et. al.

Thx for the help, that solved the first bunch of problems, now I'm down to 4 errors in 4 different php files - Phew

In make_group.php - line 88-89    

88      'CONTENT' => $content
89       )

results in an error.

In  save_group.php line 43 & 47 also errors out:

43            $users_id .= $user_id.',';

47            $adresses_bcc .= $email_address.',';

in view.php in line 34:

34   if (!$_GET['id']) {

and the final one:

In modify.php - line 301

301        $users_id.= $row['user_id']. ",";

I'm at a total loss as regards to php.

I turned off error reporting, and that removed the error messages fine, but the functionality isn't working, people can't sign up nor can I send out newsletters...

Damm it.  huh
Logged
Geek

Offline Offline

Posts: 7


« Reply #161 on: July 14, 2008, 06:16:21 AM »

Is mass mail supposed to show up as a page module? just curious because that is where mine is not in the admin tools. I dont know I couldnt get it to send the mails or post to the page made for it anyway so I uninstalled it.
Logged
vyni

Offline Offline

Posts: 566


« Reply #162 on: July 15, 2008, 10:48:50 PM »

Hi all,

I don´t want to panic You. But I had a big problem with this module. Maybe I´m not the only one. First I had a lot of the troubles already discussed herein. Than I posted here and in the german section, due to my lack of english. And I think it is important enough to write it in both languages - even in all others aswell. However.

I got 2 or 3 versions because I wanted to use this module. I couldn´t get it work, unless I mixed the versions. Then it sent and reported as expected. Seemd to be everything ok.
Until I made an upgrade to WB27. For the worst case I made a backup of my db.  grin Without any (reported) errors. Just if something goes wrong...
But it was a smooth job.
So far so good. Than I had a great idea. I made a totally new installation with WB27 (I don´t know what was the iniciator, but I did) and than I used my backup. Better, I wanted to use my backup!
phpMyAdmin didn´t like it! No way. Always reported syntax-error in line blalabla....I really dont know to much about this things - but I found table mod_massmail.
Than I edited the sql-file deleted every line where I found massmail (or deleted just the word if it was between , ,)
After this operation phpMyAdmin was satisfied and completed the import - and except the german special-characters I found everthing in WB27. Thanks god and to all programmers out there.

Reading all the troubles and keeping mine in mind:
One of the good  programmers must have a look to this module, please.

The basic is good - maybe - but for serious it´s better to use an external massmail-programm.

Regards from Himberg
Vyni

Logged

PS: Falls jemand eine Idee hat was zu tun ist und mir das erklären könnt - geh bitte davon aus dass ich ahnungslos bin, was php und so betrifft. Ich kann grad was lesen, kopieren und einfügen,  ungefähr verfolgen und glauben.
nielsr

Offline Offline

Posts: 7


WWW
« Reply #163 on: July 25, 2008, 05:46:01 PM »

Can't get the module to work!!!!!

I have my group and user installed, but every time I try and send this is the message i get:
Sorry!! The User Mails could not be sent.

Please advise I am using WB 2.7
Logged
as-lahaye

Offline Offline

Posts: 37


« Reply #164 on: August 31, 2008, 04:25:59 PM »

is there a way to change to "from" address??

I moved from develloping server to live server, only my personal address is in the "from" box.
i checked the database and module files but can't find my address..

thanks!!
Logged
tugboat

Offline Offline

Posts: 39



WWW
« Reply #165 on: October 21, 2008, 12:13:02 AM »

I cannot seem to get Massmail to work when locks are enabled!

Template Error: set_block: unable to set block list_block.
Halted.

Any ideas?

I am having the same error. WB 2.7 RC1. What do I need to do to get this working??

Much help needed...
TBS
Logged
ruebenwurzel
WebsiteBaker Org e.V.

Offline Offline

Posts: 7660



WWW
« Reply #166 on: October 21, 2008, 05:30:30 AM »

Hello,

Quote
I am having the same error. WB 2.7 RC1. What do I need to do to get this working??

Update to WB 2.7 final.

Matthias
Logged
tugboat

Offline Offline

Posts: 39



WWW
« Reply #167 on: October 21, 2008, 05:19:28 PM »

I am using 2.7. What do you mean final and therefore what are the steps?? Thank you.
Logged
doc
Guest
« Reply #168 on: October 21, 2008, 05:50:12 PM »

@tugboat

Well you stated you are using WB 2.7 RC1 which means the first release candidate of WB 2.7 not the final WB 2.7 version which can be found on the WebsiteBaker start project site: http://start.websitebaker2.org.

After the first release candidate, we issued a second and third before we released the final WB 2.7 with all it´s features. One issue was related to the template system (your error message) which is fixed in the final WB 2.7 version.

Regards Christian

P.S.: Details about upgrading to WB 2.7 final can be found on the start project page
http://start.websitebaker2.org/en/wb-2.7.php

Logged
erikp01

Offline Offline

Posts: 44



« Reply #169 on: November 02, 2008, 05:38:27 PM »

Working with WB 2.7 and have users signed up for multiple groups. Massmail does not import the users when they are signed up for more than one group.
Does anybody know how to solve this?
Logged
tost

Offline Offline

Posts: 7



WWW
« Reply #170 on: February 01, 2009, 08:39:14 PM »

Hi all.
Here you have the Norwegian languagefile, (NO.php) to the Massmail module. Working with som other translations for other modules so I'll be back.

Best regards

Tost

Edit: Remake of the language file, fixed spesial characters for Norwegian. Thanks to oeh.
« Last Edit: February 19, 2009, 08:29:09 AM by tost » Logged
oeh

Offline Offline

Posts: 190



« Reply #171 on: February 18, 2009, 11:12:39 PM »

Hi there Tost.

Rewiwed your Norweginan translation, and found that you'v forgot
to convert all the spacial chars "ÆæØøÅå" in to html enteties.
For it to be used with WB, you wil have to do this.

Rgards/ Hilsen
Odd Egil
« Last Edit: April 17, 2009, 03:59:48 PM by oeh » Logged

Good bye ;-{(
oeh ;-}>
ffenton

Offline Offline

Posts: 12


« Reply #172 on: March 06, 2009, 03:38:10 AM »

If I send an email to all users I will be able to view it listed on the page when logged in as admin. If I send an email to a group I will not be able to see this email listed when logged in as admin. If I log in as a registered user belonging to this group I will be able to see the email in the list.

What I ideally want to do is have the ablility to see list of all sent emails when logged in as admin (effectively an archive of sent emails). I've tried adding admin to a group to solve this, but massmail won't allow this.

I thought it might just require a simple amendment to view.php but I can't see a way to do it.

Does anyone have a solution?

TIA
Logged
Pastor-a

Offline Offline

Posts: 6


« Reply #173 on: April 09, 2009, 02:58:26 AM »

Hi Guys,
The Newsletter/Massmail module is great and I am very pleased to be able to use this on our site (newhopeministries.o rg.au).  However there is one error which I would love to correct if possible.

  The newsletter will inform you periodical about this website. <---  This is what is there at present.  Simply an error in English Syntax.


It should read as follows to make it syntactcally correct in English

The newsletter will inform you periodically  about this website.
                                           --------------

As I say this is a great module and we will find it most useful indeed. 

Thank You,
God Bless,
Always yours in His work,
Pastoral Counsellor - Andrew Hughes - New Hope Ministries - Alexandra Hills, Queensland - Australia.
Logged
mr-fan

Offline Offline

Posts: 1538


WWW
« Reply #174 on: April 17, 2009, 11:22:59 AM »

Can't get the module to work!!!!!

I have my group and user installed, but every time I try and send this is the message i get:
Sorry!! The User Mails could not be sent.

Please advise I am using WB 2.7

IS THERE a solution or a hint to get his point?

is it for the massmail-modul important to switch from phpmail to SMTP??

i've got the same message....read the whole old threat...i've no idea

mfg

martin
Logged

 
Pages: 1 ... 5 6 [7] 8   Go Up
Print
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!