在 Xamarin.Forms 应用程序中从 Gmail 发送电子邮件

Sending e-mail from Gmail in Xamarin.Forms app

我正在尝试使用 Gmail 从 Xamarin Forms 应用中发送电子邮件。

我创建了一个只有一种方法的接口:SendEmail();

然后,在 Droid 项目中,我添加了一个实现上述接口的 class。使用 Dependency 属性并在主项目中获取方法的实现,一切正常,除了以下错误:

Could not resolve host 'smtp.gmail.com'

这是方法的实际实现:

    string subject = "subject here ";
    string body= "body here ";
    try
    {
        var mail = new MailMessage();
        var smtpServer = new SmtpClient("smtp.gmail.com", 587);
        mail.From = new MailAddress("myEmailAddress@gmail.com");
        mail.To.Add("anotherAddress@yahoo.com");
        mail.Subject = subject;
        mail.Body = body;
        smtpServer.Credentials = new NetworkCredential("username", "pass");
        smtpServer.UseDefaultCredentials = false;   
        smtpServer.EnableSsl = true;
        smtpServer.Send(mail);
    }
    catch (Exception ex)
    {
        System.Diagnostics.Debug.WriteLine(ex);

    }

四处搜索,除了实际的 smtp 地址外,我找不到任何关于它的详细信息。

另外,我使用了 Google 中的 Less Secure apps 过程,没有收到凭据错误我认为它可以很好地连接到帐户。

你好,我已经使用下面的代码实现了这个,我还在电子邮件中附加了一个文件,使用依赖服务我使用这个方法:

Android:

public static string ICSPath
{
    get
    {
        var path = Path.Combine(Android.OS.Environment.ExternalStorageDirectory.AbsolutePath, StaticData.CalendarFolderName);
        if (!Directory.Exists(path))
            Directory.CreateDirectory(path);
        return Path.Combine(path, StaticData.CalendarFileName);
    }
}

public async Task<bool> ShareCalendarEvent(List<ISegment> segmentList)
{
    Intent choserIntent = new Intent(Intent.ActionSend);

    //Create the calendar file to attach to the email
    var str = await GlobalMethods.CreateCalendarStringFile(segmentList);

    if (File.Exists(ICSPath))
    {
        File.Delete(ICSPath);
    }

    File.WriteAllText(ICSPath, str);

    Java.IO.File filelocation = new Java.IO.File(ICSPath);
    var path = Android.Net.Uri.FromFile(filelocation);

    // set the type to 'email'
    choserIntent.SetType("vnd.android.cursor.dir/email");
    //String to[] = { "asd@gmail.com" };
    //emailIntent.putExtra(Intent.EXTRA_EMAIL, to);
    // the attachment
    choserIntent.PutExtra(Intent.ExtraStream, path);
    // the mail subject
    choserIntent.PutExtra(Intent.ExtraSubject, "Calendar event");
    Forms.Context.StartActivity(Intent.CreateChooser(choserIntent, "Send Email"));

    return true;

}

iOS:

public static string ICSPath
{
    get
    {
        var path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal), StaticData.CalendarFolderName);
        if (!Directory.Exists(path))
            Directory.CreateDirectory(path);
        return Path.Combine(path, StaticData.CalendarFileName);
    }
}


public async Task<bool> ShareCalendarEvent(List<ISegment> segmentList)
{
    //Create the calendar file to attach to the email
    var str = await GlobalMethods.CreateCalendarStringFile(segmentList);

    if (File.Exists(ICSPath))
    {
        File.Delete(ICSPath);
    }

    File.WriteAllText(ICSPath, str);

    MFMailComposeViewController mail;
    if (MFMailComposeViewController.CanSendMail)
    {
        mail = new MFMailComposeViewController();
        mail.SetSubject("Calendar Event");
        //mail.SetMessageBody("this is a test", false);
        NSData t_dat = NSData.FromFile(ICSPath);
        string t_fname = Path.GetFileName(ICSPath);
        mail.AddAttachmentData(t_dat, @"text/v-calendar", t_fname);

        mail.Finished += (object s, MFComposeResultEventArgs args) =>
        {
            //Handle action once the email has been sent.
            args.Controller.DismissViewController(true, null);
        };

        Device.BeginInvokeOnMainThread(() =>
        {
            UIApplication.SharedApplication.KeyWindow.RootViewController.PresentViewController(mail, true, null);
        });

    }
    else
    {
        //Handle not being able to send email
        await App.BasePageReference.DisplayAlert("Mail not supported", 
                                                 StaticData.ServiceUnavailble, StaticData.OK);
    }

    return true;
}

希望对您有所帮助。

终于想通了!

首先,我使用的是 Xamarin 的 Android 播放器,它显然不支持网络连接。

所以我的修复很简单:使用内置于 Visual Studio Community 2015 的 Android 模拟器(任何版本),并使用 James Montemagno 的插件测试网络连接(Xam.Plugin.Connectivity 在 NuGet 上)。