I am building a survey and I want respondants to download a pdf document sitting on a local drive Here's the code:
MAarticle =
FormFunction[{"First name" -> "String", "Last name" -> "String",
"email" -> "EmailAddress", "Company Name" -> "String",
"Sector" -> <|
"Interpreter" -> {"", "Private Equity", "Industry", "Advisory",
"Others"}, "Input" -> ""|>},
DatabinAdd[MAarticlebin, #] &,
AppearanceRules -> <|"Title" -> "Form"|>] //
CloudDeploy[#, "MAarticle", Permissions -> "Public"] &
what code to be added to
DatabinAdd[MAarticlebin, #] &
to allow download a pdf document
Thanks