本文整理汇总了C#中Storage.GetEmailSender方法的典型用法代码示例。如果您正苦于以下问题:C# Storage.GetEmailSender方法的具体用法?C# Storage.GetEmailSender怎么用?C# Storage.GetEmailSender使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Storage
的用法示例。
在下文中一共展示了Storage.GetEmailSender方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: WriteMsgAppointment
//.........这里部分代码省略.........
WriteHeaderLine(appointmentHeader, htmlBody, maxLength, LanguageConsts.AppointmentLocationLabel,
message.Appointment.Location);
// Empty line
WriteHeaderEmptyLine(appointmentHeader, htmlBody);
// Start
if (message.Appointment.Start != null)
WriteHeaderLine(appointmentHeader, htmlBody, maxLength, LanguageConsts.AppointmentStartDateLabel,
((DateTime) message.Appointment.Start).ToString(LanguageConsts.DataFormatWithTime));
// End
if (message.Appointment.End != null)
WriteHeaderLine(appointmentHeader, htmlBody, maxLength,
LanguageConsts.AppointmentEndDateLabel,
((DateTime) message.Appointment.End).ToString(LanguageConsts.DataFormatWithTime));
// Empty line
WriteHeaderEmptyLine(appointmentHeader, htmlBody);
// Recurrence type
if (!string.IsNullOrEmpty(message.Appointment.RecurrenceTypeText))
WriteHeaderLine(appointmentHeader, htmlBody, maxLength, LanguageConsts.AppointmentRecurrenceTypeLabel,
message.Appointment.RecurrenceTypeText);
// Recurrence patern
if (!string.IsNullOrEmpty(message.Appointment.RecurrencePatern))
{
WriteHeaderLine(appointmentHeader, htmlBody, maxLength, LanguageConsts.AppointmentRecurrencePaternLabel,
message.Appointment.RecurrencePatern);
// Empty line
WriteHeaderEmptyLine(appointmentHeader, htmlBody);
}
// Status
if (message.Appointment.ClientIntentText != null)
WriteHeaderLine(appointmentHeader, htmlBody, maxLength, LanguageConsts.AppointmentClientIntentLabel,
message.Appointment.ClientIntentText);
// Appointment organizer (FROM)
WriteHeaderLineNoEncoding(appointmentHeader, htmlBody, maxLength, LanguageConsts.AppointmentOrganizerLabel,
message.GetEmailSender(htmlBody, hyperlinks));
// Mandatory participants (TO)
WriteHeaderLineNoEncoding(appointmentHeader, htmlBody, maxLength,
LanguageConsts.AppointmentMandatoryParticipantsLabel,
message.GetEmailRecipients(Storage.Recipient.RecipientType.To, htmlBody, hyperlinks));
// Optional participants (CC)
var cc = message.GetEmailRecipients(Storage.Recipient.RecipientType.Cc, htmlBody, hyperlinks);
if (!string.IsNullOrEmpty(cc))
WriteHeaderLineNoEncoding(appointmentHeader, htmlBody, maxLength,
LanguageConsts.AppointmentOptionalParticipantsLabel, cc);
// Empty line
WriteHeaderEmptyLine(appointmentHeader, htmlBody);
// Categories
var categories = message.Categories;
if (categories != null)
{
WriteHeaderLine(appointmentHeader, htmlBody, maxLength, LanguageConsts.EmailCategoriesLabel,
String.Join("; ", categories));
// Empty line
WriteHeaderEmptyLine(appointmentHeader, htmlBody);
}
// Urgent
var importance = message.ImportanceText;
if (!string.IsNullOrEmpty(importance))
{
WriteHeaderLine(appointmentHeader, htmlBody, maxLength, LanguageConsts.ImportanceLabel, importance);
// Empty line
WriteHeaderEmptyLine(appointmentHeader, htmlBody);
}
// Attachments
if (attachmentList.Count != 0)
{
WriteHeaderLineNoEncoding(appointmentHeader, htmlBody, maxLength,
LanguageConsts.AppointmentAttachmentsLabel,
string.Join(", ", attachmentList));
// Empty line
WriteHeaderEmptyLine(appointmentHeader, htmlBody);
}
// End of table + empty line
WriteHeaderEnd(appointmentHeader, htmlBody);
body = InjectHeader(body, appointmentHeader.ToString());
// Write the body to a file
File.WriteAllText(fileName, body, Encoding.UTF8);
return files;
}
示例2: WriteMsgEmail
/// <summary>
/// Writes the body of the MSG E-mail to html or text and extracts all the attachments. The
/// result is returned as a List of strings
/// </summary>
/// <param name="message"><see cref="Storage.Message"/></param>
/// <param name="outputFolder">The folder where we need to write the output</param>
/// <param name="hyperlinks">When true then hyperlinks are generated for the To, CC, BCC and attachments</param>
/// <returns></returns>
private List<string> WriteMsgEmail(Storage.Message message, string outputFolder, bool hyperlinks)
{
var fileName = "email";
bool htmlBody;
string body;
string dummy;
List<string> attachmentList;
List<string> files;
PreProcessMsgFile(message,
hyperlinks,
outputFolder,
ref fileName,
out htmlBody,
out body,
out dummy,
out attachmentList,
out files);
if (!htmlBody)
hyperlinks = false;
var maxLength = 0;
// Calculate padding width when we are going to write a text file
if (!htmlBody)
{
var languageConsts = new List<string>
{
#region LanguageConsts
LanguageConsts.EmailFromLabel,
LanguageConsts.EmailSentOnLabel,
LanguageConsts.EmailToLabel,
LanguageConsts.EmailCcLabel,
LanguageConsts.EmailBccLabel,
LanguageConsts.EmailSubjectLabel,
LanguageConsts.ImportanceLabel,
LanguageConsts.EmailAttachmentsLabel,
LanguageConsts.EmailFollowUpFlag,
LanguageConsts.EmailFollowUpLabel,
LanguageConsts.EmailFollowUpStatusLabel,
LanguageConsts.EmailFollowUpCompletedText,
LanguageConsts.TaskStartDateLabel,
LanguageConsts.TaskDueDateLabel,
LanguageConsts.TaskDateCompleted,
LanguageConsts.EmailCategoriesLabel
#endregion
};
if (message.Type == Storage.Message.MessageType.EmailEncryptedAndMeabySigned)
languageConsts.Add(LanguageConsts.EmailSignedBy);
maxLength = languageConsts.Select(languageConst => languageConst.Length).Concat(new[] {0}).Max() + 2;
}
var emailHeader = new StringBuilder();
// Start of table
WriteHeaderStart(emailHeader, htmlBody);
// From
WriteHeaderLineNoEncoding(emailHeader, htmlBody, maxLength, LanguageConsts.EmailFromLabel,
message.GetEmailSender(htmlBody, hyperlinks));
// Sent on
if (message.SentOn != null)
WriteHeaderLine(emailHeader, htmlBody, maxLength, LanguageConsts.EmailSentOnLabel,
((DateTime)message.SentOn).ToString(LanguageConsts.DataFormatWithTime));
// To
WriteHeaderLineNoEncoding(emailHeader, htmlBody, maxLength, LanguageConsts.EmailToLabel,
message.GetEmailRecipients(Storage.Recipient.RecipientType.To, htmlBody, hyperlinks));
// CC
var cc = message.GetEmailRecipients(Storage.Recipient.RecipientType.Cc, htmlBody, hyperlinks);
if (!string.IsNullOrEmpty(cc))
WriteHeaderLineNoEncoding(emailHeader, htmlBody, maxLength, LanguageConsts.EmailCcLabel, cc);
// BCC
var bcc = message.GetEmailRecipients(Storage.Recipient.RecipientType.Bcc, htmlBody, hyperlinks);
if (!string.IsNullOrEmpty(bcc))
WriteHeaderLineNoEncoding(emailHeader, htmlBody, maxLength, LanguageConsts.EmailBccLabel, bcc);
if (message.Type == Storage.Message.MessageType.EmailEncryptedAndMeabySigned)
{
var signerInfo = message.SignedBy;
if (message.SignedOn != null)
signerInfo += " " + LanguageConsts.EmailSignedByOn + " " +
((DateTime)message.SignedOn).ToString(LanguageConsts.DataFormatWithTime);
WriteHeaderLineNoEncoding(emailHeader, htmlBody, maxLength, LanguageConsts.EmailSignedBy, signerInfo);
}
//.........这里部分代码省略.........