Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

44 lines
1.3 KiB

// ==========================================================================
// Squidex Headless CMS
// ==========================================================================
// Copyright (c) Squidex UG (haftungsbeschraenkt)
// All rights reserved. Licensed under the MIT license.
// ==========================================================================
using Squidex.Domain.Apps.Core.Rules.Deprecated;
using Squidex.Flows;
using Squidex.Infrastructure.Reflection;
using Squidex.Infrastructure.Validation;
namespace Squidex.Extensions.Actions.Email;
[Obsolete("Has been replaced by flows.")]
public sealed record EmailAction : RuleAction
{
[LocalizedRequired]
public string ServerHost { get; set; }
[LocalizedRequired]
public int ServerPort { get; set; }
[LocalizedRequired]
public string MessageFrom { get; set; }
[LocalizedRequired]
public string MessageTo { get; set; }
[LocalizedRequired]
public string MessageSubject { get; set; }
[LocalizedRequired]
public string MessageBody { get; set; }
public string ServerUsername { get; set; }
public string ServerPassword { get; set; }
public override FlowStep ToFlowStep()
{
return SimpleMapper.Map(this, new EmailFlowStep());
}
}