View Single Post
  #2  
Old 06-04-2017, 09:36 AM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 68,182
Dinocanid is on a distinguished road
Default

This is how I send automatic PMs when users first register.
PHP Code:
$pm = new PrivateMessage(); // Send them a message
    
$pm->setsender('SYSTEM');
    
$pm->setrecipient(htmlentities(addslashes(trim($mysidia->input->post("username")))));
    
$pm->setmessage("Title""Your Message");
    
$pm->post(); 
You'll most likely have to replace $mysidia->input->post("username") with $mysidia->user->username depending on how you plan to use it.
__________________
Reply With Quote