1

ユーザーが自分の名前を入力するテキストボックスがある単純なWinFormプロジェクトに取り組んでいます。彼がボタンをクリックしたときに、この入力をメールアドレスなどに送信できるようにしたいと考えています。

これは可能でしょうか?もしそうなら、どうすればいいですか?

4

1 に答える 1

1

次のコードは、カスタム SMTP クライアントで電子メールを送信するために使用されます。

using System;
using System.Net.Mail;

    class Program
    {
        static void Main(string[] args)
        {
            try
            {

                MailMessage mail = new MailMessage();
                SmtpClient SmtpServer = new SmtpClient("smtp.customsmtp.com");

                mail.From = new MailAddress("fromEmail@fromemail.com");
                mail.To.Add("toemail@toemail.com");
                mail.Subject = "Your Subject";
                mail.Body = "Your Textbox Here!";
                SmtpServer.Send(mail);
            }
            catch (Exception ex)
            {
                Console.WriteLine("Seems some problem!");
            }

            Console.WriteLine("Email sent successfully!");
            Console.ReadLine();
        }

    }

以下のサンプルでは、​​Gmail のユーザー名とパスワードを使用して、Gmail アカウントから電子メールを送信します。

using System;
using System.Net;
using System.Net.Mail;

namespace GMailSample
{
    class SimpleSmtpSend
    {
        static void Main(string[] args)
        {
            SmtpClient client = new SmtpClient("smtp.gmail.com", 587);           
            client.EnableSsl = true;
            MailAddress from = new MailAddress("YourGmailUserName@gmail.com", "[ Your full name here]");           
            MailAddress to = new MailAddress("your recipient e-mail address", "Your recepient name");
            MailMessage message = new MailMessage(from, to);
            message.Body = "This is a test e-mail message sent using gmail as a relay server ";
            message.Subject = "Gmail test email with SSL and Credentials";
            NetworkCredential myCreds = new NetworkCredential("YourGmailUserName@gmail.com", "YourPassword", "");           
            client.Credentials = myCreds;
            try
            {
                client.Send(message);
            }
            catch (Exception ex)
            {
                Console.WriteLine("Exception is:" + ex.ToString());
            }
            Console.WriteLine("Goodbye.");
        }
    }
}

お役に立てれば!

于 2013-05-09T11:38:20.490 に答える