I had given up on this but finally found a perfect solution.
1) use llamalabs "automate" to send the email( in this example i'm also snaping the photo)
(see attach screen shot)
2) use Droidscript to initiate the flow in Automate:
function SendEmail()
{
app.ShowPopup("Sending Email");
let action = "com.llamalab.automate.intent.action.START_FLOW";
let uri = "content://com.llamalab.automate.provider/flows/13/statements/1"
let packageName = "com.llamalab.automate";
let className = null;
app.SendIntent(packageName,className,action,null,uri,null)
}
Yay...thank-you to all that tried to help me....and there were several of you.