Goodbye Email?

Is there any mod that will send out an email to a member that deletes their account using the unregister.php page ? 

 

Somethig like;

This email is to confirm the deletion of your account. although

were sad to see you go :(

can we not tempt you with a discount blah blah blah

 

 

I thought something would already be in place in the email template secitron for the site but unfortunately not ...

 

any ideas?

 

chris  

 

All for one and one for all....ah sod it who am i kidding!
Quote · 31 Mar 2014

edit the script and add the bits to use the php mail function; mail().

mail(to,subject,message,headers,parameters)

$ToEmail="";

$Subject="Sorry to see you go";

$Message="were sad to see you go :( can we not tempt you with a discount blah blah blah";

mail($ToEmail, $Subject, $Message);

 

I don't know what that script is pulling in so you may need to import other files to be able to get the email address of the user, etc.  You can use heredoc for the message to format it.

That should get you started.

Geeks, making the world a better place
Quote · 31 Mar 2014

 RE:

Is there any mod that will send out an email to a member that deletes their account using the unregister.php page ?

 Rather than do that, which will give you no useful information as to why the user is leaving, this might be a better option:

http://www.boonex.com/m/unregister-quiz

My opinions expressed on this site, in no way represent those of Boonex or Boonex employees.
Quote · 31 Mar 2014

You can also check the member Tracker module, http://www.boonex.com/m/member-tracker.

This provides useful Survey on registration so you can know where your members are coming from and also upon un-registration so you know why they are leaving.
It also has the ability to send individual email or mass messages to members who participated in either the Registration or Exit Survey. 

Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz
Quote · 1 Apr 2014

You can also check the Auto Mailer module which allows Administrator to send one or multiple messages to members upon joining or un-registering.

Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz
Quote · 1 Apr 2014
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.