• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: send copy email if checkbox is selected

send copy email if checkbox is selected 11 years 2 months ago #26651

  • aimad121
  • aimad121's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
helow please i want

send copy email to user only when he wants that ,

that is to say if checkbox is selected

i use : but not working

$from="From:$from\n";
if ($_REQUEST=='on') {
$from.="CC:".$_REQUEST."\n";
}

in Script called before the User Email is sent,
hepl me please
name form : contact
name checkbox : copy0
name user textbox : email
The administrator has disabled public write access.

send copy email if checkbox is selected 11 years 2 months ago #26653

  • adrianp
  • adrianp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 631
  • Thank you received: 146
Hello,

You can try using a similar as the following script within the backend > Components > RSForm!Pro > Manage Forms > your form > Properties > PHP Email Scripts > Script called before the User Email is sent:
if($_POST['form']['copy0'] == null){
$userEmail['to'] = '';
$userEmail['from'] = '';
}

This implies you setup the User Email correctly as explained in the following article:

www.rsjoomla.com/support/documentation/v...onfigure-emails.html

If the checkbox is not checked, the script simply clears the TO and FROM fields of your user email, thus preventing the user email from being sent.
This is not official customer support. To receive your support, submit a support ticket here.
The administrator has disabled public write access.
The following user(s) said Thank You: aimad121

send copy email if checkbox is selected 11 years 2 months ago #26660

  • aimad121
  • aimad121's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
thank you for your message,
that code not working i can't find the problem
Last Edit: 11 years 2 months ago by aimad121.
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!