電子メールアドレスに複数のファイルを郵送する必要があります。ファイルの拡張子は.tcxでなければなりません。これらは実際にはXMLファイル(Garmin自転車ログ)です。System.net.mail添付ファイルは.xmlファイル拡張子を取得します
受信者が電子メールを受け取ったとき、添付ファイルの名前はxxxxx.tcx.xmlです。メーラーが添付ファイル名を変更しないようにするにはどうすればよいですか?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Net.Mail;
using System.IO;
namespace stravamailer
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
var files = Directory.GetFiles("E:\\JurgenS\\Downloads\\allrides");
for (int i = 0; i < files.Length; i++)
{
MailMessage oMail = new MailMessage();
oMail.Body = "";
oMail.From = new MailAddress("[email protected]","Jurgen Stillaert");
oMail.Subject = "";
oMail.To.Add(new MailAddress("[email protected]"));
Attachment att = new Attachment(files[i]);
att.Name = Path.GetFileName(files[i]);
oMail.Attachments.Add(att);
SmtpClient oSmtp = new SmtpClient("uit.telenet.be");
oSmtp.Send(oMail);
}
}
}
}
添付ファイルの名前が変更されているかどうかを確認するには、別のメールアドレス(gmailまたはhotmailのような全く異なるプロバイダ)に送信してみてください。私はそれが受信メールサーバーのためだと感じている! – banging