Send new user a custom messages

Send new user a custom messages

by Alaa Salih -
Number of replies: 4

I want to writ a module(plugin) to send new users some messages.

but I don't know how to hook in signup action.

pleas help me?

Average of ratings: -
In reply to Alaa Salih

Re: Send new user a custom messages

by Hubert Chathi -

You probably want to use the events API: http://docs.moodle.org/dev/Events_API.  There is a user_created event.  Beware, though: not all authentication plugins trigger this event.

Average of ratings: Useful (1)
In reply to Hubert Chathi

Re: Send new user a custom messages

by Alaa Salih -

thanks. I think this is better than using hooks.

In reply to Alaa Salih

Re: Send new user a custom messages

by Patrick Pollet -

See this discussion http://moodle.org/mod/forum/discuss.php?d=201499 and adapt it to locally trap the user_created event instead of user_unenrolled

Cheers

Average of ratings: Useful (1)
In reply to Patrick Pollet

Re: Send new user a custom messages

by Alaa Salih -

it's nice of you to share that link. it's very usefull