• 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: Multiple emails sent

Multiple emails sent 16 years 8 months ago #5755

  • dedeman
  • dedeman's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
After succesfully filling the form the result of the form is sent for example to an admin email. I want also a \"thank you message\" to be sent to the sender of the form. The email should be taken from \"E-mail\" field. In conclusion, the result of the form should be sent to admin and the thank you message to the sender.

How I can do this? Thanks a lot!
The administrator has disabled public write access.

Re:Multiple emails sent 16 years 8 months ago #5769

  • arma
  • arma's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 16
Hello if you want to form filler recieve email you just put your email fild id (ex: {email}) in Emails tab of form configurations.
By default you can view result in RsForm data view place but if you would like to send email with form data to admin you would have to do some script in scripts tab in script proccess field.
The administrator has disabled public write access.

Re:Multiple emails sent 16 years 8 months ago #5787

  • dedeman
  • dedeman's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
So what script i need to use? A php mailer function? I repeat, one mail goes to admin (results of the filled fields) and one mail goes to the form filler(just a thank you message).

How can I implement this?
The administrator has disabled public write access.

Re:Multiple emails sent 16 years 8 months ago #5798

  • matt
  • matt's Avatar
  • OFFLINE
  • Expert Boarder
  • Posts: 136
  • Thank you received: 14
In the \"Emails\" tab and for the field \"Email Form data to\" just enter following {email}, This e-mail address is being protected from spambots. You need JavaScript enabled to view it eg. your Field ID for emails and your admin email.

Matt
The administrator has disabled public write access.

Re:Multiple emails sent 16 years 8 months ago #5801

  • dedeman
  • dedeman's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 3
But in this case the admin email and the filler's one will be the same. I don't want to be the same! I want the admin to receiver the filling process results and the filler just \"Thank you\".

How about this?! Thanks
The administrator has disabled public write access.

Re:Multiple emails sent 16 years 8 months ago #5805

  • arma
  • arma's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 16
Found this in forum, you could adjust this to do right thing.
Tho i don't know much of php so can't help you adjust it see yourself.
//define the receiver of the email
$to = 'myemailaddress@verizon.net';
//define the subject of the email
$subject = 'Price List Data';
//define the message to be sent. Each line should be separated with n
$message = \"{companyname}nnThis is my first mail.\";
//define the headers we want passed. Note that they are separated with rn
$headers = \"From: myemailaddress@verizon.netrnReply-To: myemailaddress@verizon.net\";
//send the email
$mail_sent = @mail( $to, $subject, $message, $headers );
//if the message is sent successfully print \"Mail sent\". Otherwise print \"Mail failed\"
echo $mail_sent ? \"Mail sent\" : \"Mail failed\";
<br><br>Post edited by: arma, at: 2008/11/29 13:52
The administrator has disabled public write access.

Re:Multiple emails sent 16 years 8 months ago #5831

  • proexe
  • proexe's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 34
If you wanted an easier way then you should upgrade to RSForms! Pro
as this has the abillity for this
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!