We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

How to remove welcome email? | Forum

Topic location: Forum home » Support » General Questions
OW-Ghost
OW-Ghost Feb 24 '20
How to remove/disable the "welcome email" after a user is verified email?


It cost me money every time this welcome email is send out to my members and i feel there is no need send out this email


ow_ghost

The Forum post is edited by OW-Ghost Feb 24 '20
dave Leader
dave Feb 24 '20
in ow_system_plugins/base/classes/event_handler.php


you can try commenting out this line on line 50


$eventManager->bind(OW_EventManager::ON_USER_REGISTER, array($this, 'onUserRegisterWelcomeLetter'));


like so 


//$eventManager->bind(OW_EventManager::ON_USER_REGISTER, array($this, 'onUserRegisterWelcomeLetter'));


and see if that helps... i have not tested this so you will need to test it... 


Just be aware that if you ever uncomment that line of code i believe all users that did not get a welcome letter will get one, im still looking at it but it appears to set a flag value in preferences.

The Forum post is edited by dave Feb 24 '20
OW-Ghost
OW-Ghost Feb 24 '20
Okey, thanks dave 


i will test it

Georger
Georger Oct 30 '20
Thank you so much.