The client is getting their side of the application, but they are also getting the Applicant's Auto Response email too.

Email is the applicant's field. What is supposed to go into that field?
Here is a link the application form WWB project as requested: https://www.websitesbybarbara.com/appli ... sample.zipPablo wrote: Fri Apr 11, 2025 5:33 pm To be able to help you, I need a DEMO project (.wbs file) so I can see all your settings.
Also, please include a description how to reproduce this problem.
I do not need the complete project because that will only take more time to figure out what you have done.
Basically, I just need a small project with one page and object(s) that are relevant to your question.
For further details about how to share a project file, please see this FAQ:
viewtopic.php?f=10&t=82134
Hi Pablo,Pablo wrote: Fri Apr 11, 2025 5:33 pm To be able to help you, I need a DEMO project (.wbs file) so I can see all your settings.
Also, please include a description how to reproduce this problem.
I do not need the complete project because that will only take more time to figure out what you have done.
Basically, I just need a small project with one page and object(s) that are relevant to your question.
For further details about how to share a project file, please see this FAQ:
viewtopic.php?f=10&t=82134
Code: Select all
$mailto = 'application@....';
$mailfrom = isset($_POST['email']) ? $_POST['email'] : $mailto;
$autoresponder_to = isset($_POST['email']) ? $_POST['email'] : $mailfrom;
Hi Pablo,Pablo wrote: Sun Apr 13, 2025 6:11 am The auto responder field is set the 'email'.
If this value is not set, then the auto responder email will be sent to 'mailfrom' which take also takes the value from the 'email' input.
Code: Select all
$mailto = 'application@....'; $mailfrom = isset($_POST['email']) ? $_POST['email'] : $mailto; $autoresponder_to = isset($_POST['email']) ? $_POST['email'] : $mailfrom;
The "Input Field Name" is completed with "email". Shouldn't that be the email address of the applicant, as "email" is the field name for the applicant.Pablo wrote: Sun Apr 13, 2025 2:56 pm No, if the email input field of the form is empty, then the auto responder email is sent to the mailto address.
I did not specify multiple address in the CC field on the Auto Responder. The Auto Responder doesn't even have a place for CC email addresses.Pablo wrote: Sun Apr 13, 2025 5:03 pm By default, the message is sent to the 'Email Address' specified in the form's properties.
If the 'Auto Responder' option is enabled, a copy of the message is also sent to the email address entered by the user in the form's 'Email' field.
Additionally, since you've specified multiple addresses in the 'CC' field, the message is also sent to those recipients.
The admin is my client.Pablo wrote: Mon Apr 14, 2025 5:55 am I do understand your request, but it looks like you do not understand or appreciate my help.
'CC' is a property of the form, not of auto responder. You have set this in Email Address -> More
In your form. who is the 'admin'?
Thank you.BaconFries wrote: Mon Apr 14, 2025 5:26 pm The CC stands for carbon copy harking back to the days were you would use carbon paper to copy a letter to send to multiple persons.
When used in emails it allows someone other or others than the primary recipient to receive a copy of the email.
It also means the recipient in both the To field and CC field will be able to see each others email addresses. If this is not what you want then you may want to leave the CC field empty or blank.