net - new attachment c#
Establecer el nombre del archivo adjunto de correo electrónico en C# (2)
Debe cargar el archivo adjunto de un flujo y luego puede darle un nombre y un tipo de medio.
var fs = new FileStream("attachmentPath", FileMode.Open);
var attachment = new System.Net.Mail.Attachment(fs, "MyAttachmentName.txt", "text/text");
Agregué un archivo adjunto como este:
System.Net.Mail.Attachment attachment = new System.Net.Mail.Attachment(AttachmentPath);
msg.Attachments.Add(attachment);
Pero quiero hacer que se adjunte un nombre diferente, el nombre del archivo es muy largo y confuso. Me gustaría adjuntarlo como "archivo.txt", ¿hay alguna manera fácil de hacerlo sin tener que hacer una copia del ¿archivo?
Qué tal si:
System.Net.Mail.Attachment attachment = new System.Net.Mail.Attachment(attachmentPath);
attachment.Name = "file.txt"; // set name here
msg.Attachments.Add(attachment);