mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(Mandrill Node): Fix a typo in subaccount in options (#18103)
This commit is contained in:
@@ -766,8 +766,8 @@ export class Mandrill implements INodeType {
|
||||
message.from_name = options.fromName;
|
||||
}
|
||||
|
||||
if (options.subaccount) {
|
||||
message.subaccount = options.subaccount;
|
||||
if (options.subAccount) {
|
||||
message.subaccount = options.subAccount.toString();
|
||||
}
|
||||
|
||||
const body: Body = {
|
||||
|
||||
Reference in New Issue
Block a user