如何使联系表格只发送表格的填写部分?

How to make contact form only send filled out parts of form?

基本上,如果用户填写了 3 / 4 个字段,它只发送 3 个字段而忽略第四个字段,我该如何做到这一点...所以它看起来像:

字段一:已填写

字段二:已填写

字段四:已填写

而不是:

字段一:已填写

字段二:已填写

字段三:

字段四:已填写

谢谢!!

如果需要前 3 个,请在 HTML 输入标记和 PHP 中添加 required 属性,您可以像这样简单地检查:

if ($_POST['field4th']) {
    // ... Do something here with 4 fields
} else {
    // ... Do something here with 3 fields
}