#sitecore #sitecore6
#sitecore #sitecore6
Вопрос:
Когда рецензент отклоняет элемент в процессе workflow, как мне сообщить отправителю? Это кажется очень распространенной ситуацией, но я просто вижу самые основные поля в элементе «Действие электронной почты»:
Кому, От, Тема, Сообщение
Есть ли системная переменная для пользователя, а затем что-то для адреса электронной почты пользователя? Я бы ожидал, что это будет что-то вроде: $ user.email.
Комментарии:
1. Привет, я обновил свой ответ примером кода. Надеюсь, это поможет.
Ответ №1:
Получите действие почтового рабочего процесса из действий общего исходного рабочего процесса.
Затем вам нужно немного расширить контекст заполнения, чтобы упростить доступ к последним пользователям. Вот моя реализация одного из наших недавних проектов:
protected virtual void PopulateContext(WorkflowPipelineArgs args)
{
VelocityContext.Put("args", args);
var item = args.DataItem;
VelocityContext.Put("item", item);
VelocityContext.Put("language", item.Language.CultureInfo.EnglishName);
VelocityContext.Put("version", item.Version.Number);
VelocityContext.Put("comment", args.Comments);
VelocityContext.Put("processor", args.ProcessorItem);
VelocityContext.Put("user", Context.User);
Database masterDatabase = Factory.GetDatabase(DatabaseNames.Master);
var workflow = masterDatabase.WorkflowProvider.GetWorkflow(item);
var history = workflow.GetHistory(item);
VelocityContext.Put("history", history);
if (history.Length > 0)
{
string lastUser = history[history.Length - 1].User;
MembershipUser membership = Membership.GetUser(lastUser);
VelocityContext.Put("authorEmail",
membership != null
? membership.Email
: DataAccessSettings.Workflow.WebQueryEmail);
}
VelocityContext.Put("state", workflow.GetState(item));
var nextStateItem = GetNextState(args);
VelocityContext.Put("nextState", nextStateItem != null ? nextStateItem.Name : string.Empty);
VelocityContext.Put("time", DateTime.Now);
VelocityContext.Put("previewUrl", string.Format("http://{0}/?sc_itemid={{1}}amp;sc_mode=previewamp;sc_lang=en", DataAccessSettings.Site.HostName, item.ID.Guid));
VelocityContext.Put("contentEditorUrl", string.Format("http://{0}/sitecore/shell/Applications/Content editor.aspx?fo={{1}}amp;id={{1}}amp;la=enamp;v=1amp;sc_bw=1", DataAccessSettings.Site.HostName, item.ID.Guid));
}
/// <summary>
/// Processes the template, expanding all known values
/// </summary>
/// <param name="value">Template to process</param>
/// <returns>Rendered template</returns>
protected virtual string ProcessValue(string value, Item item)
{
var result = new StringWriter();
try
{
Velocity.Evaluate(VelocityContext, result, "Extended mail action", value);
}
catch (ParseErrorException ex)
{
Log.Error(string.Format("Error parsing template for the {0} item n {1}",
item.Paths.Path, ex), this);
}
return result.GetStringBuilder().ToString();
}
#region helpers
private static Item GetNextState(WorkflowPipelineArgs args)
{
Item command = args.ProcessorItem.InnerItem.Parent;
string nextStateID = command["Next State"];
if (nextStateID.Length == 0)
{
return null;
}
return args.DataItem.Database.Items[ID.Parse(nextStateID)];
}
private string ProcessFieldValue(string fieldName, Item item)
{
string value = item[fieldName];
if (value.Length > 0)
{
return ProcessValue(value, item);
}
return value;
}
#endregion
Вы можете использовать $authoremail при настройке шаблона электронной почты.
Надеюсь, это поможет.
Комментарии:
1. Это выглядит действительно полезным. Спасибо! Это просто кажется такой базовой функцией, что я не чувствую, что мне нужно использовать так много кода.