When a user signs up at a Drupal site, there is a configurable message that Drupal will send the user letting them know their username and password.
I have about 1,000 users that I imported, but at the time, I didn’t want to notify them – but now I do. Is there a way notify the users without reimporting them?
I looked through some of the modules I thought might contain that function, but I couldn’t find it??
Of course there is a way: If you want to do this just one time, I recommend using a quick n’ easy way…
drupal_bootstrap(). In an external php file call this function to bootstrap Drupal, then load users and dispatch email messages. Here’s a pseudo-code:Read more at Drupal API:
drupal_mail()drupal_bootstrap().