Sentora Support Forums

Full Version: [module] Mass mail
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Mass Mail

Allow you to send mails to all you users
You can´t either send mail to all user from a packages or all users
How to install

Add repo.alio.dk to you zppy
Code:
Zppy repo add repo.alio.dk
Now update
Code:
Zppy update
And now install
Code:
Zppy install Mass_mail
Or use the repo browser or [attachment=117]

[Image: HHwJ3Su.png]
Great Diablo925!
Thank you very much for your cooperation.
Smile
Just hit the thanks Button
Send email, blank screen
Are you using zpanel or sentora
Some old modules may have issues with sentora.......
works fine for now... Smile
I have problems with encoding.I write on Russian and in E-mail is just ( Всем тест) canyou help me?
@magvay
i can try Smile

open via ssh controller.ext.php
Code:
sudo nano /etc/sentora/panel/modules/Mass_mail/code/controller.ext.php

Update this
Code:
           $phpmailer = new sys_email();            $phpmailer->Subject = $emailsubject;            $phpmailer->Body = $emailbody;            $phpmailer->AddAddress($email);            $phpmailer->SendEmail();

To

Code:
$phpmailer = new sys_email(); $phpmailer->CharSet = 'ISO-8859-5';            $phpmailer->Subject = $emailsubject;            $phpmailer->Body = $emailbody;            $phpmailer->AddAddress($email);            $phpmailer->SendEmail();
Thanks i will try!
Pages: 1 2