When the plugin action NovuloEmailSendEmailAction is triggered, a few parameters have to be set for it to send an email successfully. The image below is an implementation within M7655

If I understand it correctly, the “from” parameter is the name of the sender, not the email address of the sender.
Where is the “from email address” defined?
Can I choose dynamically between different “from email addresses” from within a Novulo application?
1 Like
Hi Joachim,
The from parameter is the one used to define the sender of the Email.
It is in the form of Tuple<string, emailaddress>
Where the string is used for Display name and the emailaddress (value of the tuple) is a value that is of type emailaddress (or string, that represents a valid email address)
Where you get it from, the plugin action does not care. As long as you provide this required parameter in the form Tuple<display_name, emailaddress> (or i.o.w. Tuple<string,mixed>) it should work out.
Thank you!
As an additional question: Is there any validation on the e-mail address of the sender?
I would imagine that choosing a random email address like “thisemailaddressdoesnotexist@test.com” would result in a failed attempt to send the e-mail.
If a validation exists, how do I know which e-mail addresses are allowed?
As far as I know the only validation that can be performed is on the used E-mail address field within the novulo application.
The value itself is not checked in the plugin action itself. It could be that Aspose Email does some validations before sending the actual message, but I don’t think its the case, as I think there is no way to determine if an email address exists withouth attempting to send a message to it.
I contacted @HenkWilms for further clarification. An SPF record determines which senders are allowed. This record is not accessible from within the Novulo application.
So it seems like there is no validation yet to filter out invalid sending email addresses on the Novulo side. In my opinion, a new feature should be developed within a Novulo component to run a custom validation before sending an email. The validation (e.g. regex) should match the logic of the SPF record. This should allow users to fix email errors before they occur.