I am adding recipients dynamically using the following in the pre-send script:
import javax.mail.Message
import javax.mail.internet.InternetAddress
msg.addRecipient(Message.RecipientType.TO, new InternetAddress('recipient@example.com'))
Now after adding this the email subject is missing.
How to access the default subject line that Email ext plugin generates by default.