ウェブサーバーからファイル (pdf ファイル) をダウンロードして SD カードに保存しようとしています。または、このファイルを電子メールに直接添付して、その後電子メールを送信しようとしています。
私のアプリケーションは、一部の情報を含む一部の学生に電子メールを送信する必要があります.
私はWWWクラスを試していますが、動作していません
if(loadInfo.getPantallaActual().Equals("pantallaInicio"))
{
Email objEmail = LoadCarreras.objXML.objCarrera.GetEmail();
string to = "to@hotmail.com";
string from = "from@gmail.com";
string subject = objEmail.GetAsunto();
string body = objEmail.GetCuerpo();
string urlAttachment = objEmail.GetContenido_url();
StartCoroutine(descarga(urlAttachment));
archivo = Path.GetFileName(urlAttachment);
File.CreateText(Application.persistentDataPath + "/"+archivo);
Debug.Log(" urlAttachment "+urlAttachment);
Debug.Log(" archivo "+archivo);
Debug.Log(" persistentDataPath "+Application.persistentDataPath + "/"+archivo);
message = new MailMessage(from, to, subject, body);
SmtpClient client = new SmtpClient("smtp.gmail.com", 587);
client.EnableSsl = true;
client.UseDefaultCredentials = false;
client.Credentials = (ICredentialsByHost) new System.Net.NetworkCredential("from@gmail.com", "pasw.");
client.DeliveryMethod = SmtpDeliveryMethod.Network;
client.Timeout = 10000;
ServicePointManager.ServerCertificateValidationCallback =
delegate(object s, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors)
{ return true; };
try {
client.Send(message);
}
catch (System.Exception ex) {
Debug.Log("Exception caught in CreateTestMessage1(): "+ex.ToString() );
}
public IEnumerator descarga(string url){
descargaA = new WWW(url);
mandarEmail = true;
yield return descargaA;
}
void Update () {
if(mandarEmail)
{
if(descargaA.isDone && cambiar){
message.Attachments.Add (new Attachment(Application.persistentDataPath + "/"+"file.pdf"));
cambiar = false;
}
}
}