<label>
[email* your-email autocomplete:email]
</label>
<input type="submit" value="Відправити">
Нужно каким-то образом сделать чтобы когда пользователь отправил форму ему автоматически скачался пдф файл
<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
location = 'http://example.com/';
}, false );
</script>
<script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
window.open('http://example.com/', '_blank');
}, false );
</script>