Skip to main content
Participant
November 30, 2016
Question

Return form without Identifiers

  • November 30, 2016
  • 2 replies
  • 289 views

I have created a fillable form, included a submit button and can receive it in my email.  Is there a way to remove the identity of the email of the person who is sending the form.  I want them to be able to complete it anonymously.

This topic has been closed for replies.

2 replies

NKOWA555
Inspiring
November 30, 2016

Send the submission to a server-side script such as ASP.net or PHP. The script can anonymously send the submission using an existing SMTP account where you specify the "From" address.

Visit the following website for online examples:

www.pdfemail.net/examples/

try67
Community Expert
Community Expert
November 30, 2016

Not unless you create a shared email address and have them post it through there.

A better approach would be not to use email, but to submit the forms (or just the form data) to a service that runs on a web-server, and can then save the responses locally, or email them to you, without any identifying information.