Disable Joomla Account Details Email (To User) - joomla

Trying to disable the "Account Details for User at Site Name" email from Joomla 1.5. I commented out the following line of code and it's still sending:
components/com_user/controller.php:519
JUtility::sendMail($mailfrom, $fromname, $email, $subject, $message);

That's for the frontend registration. If you want to disable those emails when you register a user from the backend, you have to edit code in administrator/components/com_user/controller.php:189
It's a pitty that the only way to accomplish this in 1.5 is hacking of core files...

Related

Can Joomla send the user an email after admin approves them?

Problem is:
User registers at the side and gets a registration email with a
confirmation link which can be used. and
Admin gets an email notification of a newly registered user
Admin activates & enables the user
No notification email to the user is sent about his accounts activation
No hints in the logs. Mailserver is working as described. Tests with System emails active for users show no difference in the behavior. Also added true to $return = JFactory::getMailer()->sendMail($data['mailfrom'], $data['fromname'], $data['email'], $emailSubject, $emailBody, true); in registeration.php
Does this feature actually work? Any help in solving this would be much-appreatiated.
Using Joomla 3.9.15 and no external plugins for user-management.
Thanks in advance for your time.
Joomla distinguishes between user activation by link through email or via administration backend. In order to send an email to the user after the activation of the user account one needs to use the link from the email. Activation from the administration backend will not send an email to the user who's account was activated.

How to Send an Email Verification for a Created User?

I'm trying to use Laravel 5.7's new email verification feature. Let's say I'm logged in as Admin inside the admin panel and I want to:
Create a random user via admin panel.
Send an email verification to that created user's email.
How can I accomplish this with the new Laravel 5.7 email verification feature?
The built in verification scaffolding provides a notification to do this. You just need to ensure that the user's verified_at is set to null and then
use Iluminate\Auth\Notifications\VerifyEmail;
$user->notify(new VerifyEmail);
This will resend a new email with a signed URL.

Joomla 3.8 - can't approve user registrations

The latest update of Joomla added 'New ACL Verification on approving an user after email notification' See Joomla 3.8.13 Security Notice
I can now no longer approve user registrations, even when logging in as super user. It does not redirect me to the activation URL but instead I get the following message:
You are not authorised to view this resource.
Any help would be much apprchiated.

Joomla create a confirmation button that send email to administrator

i have a big problem. I have to create a button that is taking the name and email of registred users and sending automatic email to the admin for confirmation.
Joomla already has a feature so that admins must approve the registration of a user. Have a look here at the Joomla documentation:
https://docs.joomla.org/Enabling_user%27s_registration_approval_by_admins
If you need a little more functionality, you may want to consider a 3rd party extension such as Admin Approval
Hope this helps

D7 doesn't sent mail after user registration

I have a local site on Drupal 7.21. The problem is it doesn't sent mail after registration. It still sends "lost password" messages, as well as contact form messages.
To debug it I've added a _mail_alter to track messages using dd() and dpm() functions. And added this code to settings.php:
$conf['mail_system'] = array('default-system' => 'DevelMailLog',);
And $message contains no info about registration mail. How can I debug what is going on?
P.S. I don't know if it is important. On REGISTRATION AND CANCELLATION tab on config page (admin/config/people/accounts) I selected these option: Visitors can register accounts, but require e-mail verification when a visitor creates an account.
Make sure "Notify user when account is activated" is also checked. It's located under the Account activation tab on the Account settings config page (admin/config/people/accounts).
If you're creating users via admin/people/create, there's a similar checkbox you'll need to check.

Resources