Github user zenfenan commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2556#discussion_r175278665
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutEmail.java
---
@@ -194,6 +200,15 @@
.allowableValues("true", "false")
.defaultValue("false")
.build();
+ public static final PropertyDescriptor CONTENT_AS_MESSAGE = new
PropertyDescriptor.Builder()
--- End diff --
With this, we can set `MESSAGE.required()` can be set to `false`, right?
---