The old messages re the subject are unavailable.
I used this routine. Works ok. There is a limit on size. Depends on OS.
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Diagnostics;
namespace TeleM
{
public class Email:Form
{
private string e_address;
private string subject;
private string body;
public Email(string e_address, string subject, string body)
{
this.e_address=e_address;
this.subject=subject;
this.body=body;
do_mail();
}
private void do_mail()
{
try
{
string message = string.Format( "mailto:{0}?subject={1}&body={2}",
e_address, subject, body );
Process.Start( message );
}
catch
{
MessageBox.Show("Message is too
big.","Error",MessageBoxButtons.OK,MessageBoxIcon.Warning);
}
}
}
}