Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Jack-Mariani · Oct 03, 2014 at 02:20 PM · emailsendattachment

Add a byte[] as attachment in a mail

In the game I capture a screenshot and I'd like to send it via mail.

Is it possible to send it wihtout saving the file to the hard drive?

I tried mail.Attachments.Add(screenshotFile);

But I need to change the byte[] to attachment. Is it possible to do that? (I'm using gmail as smtp).

My code is the following:

 static public void GmailSend (string mail, string subject, string body)
     {
         MailMessage mail = new MailMessage();
         
         mail.From = new MailAddress("email@email.here");
         mail.To.Add(mail);
         mail.Subject = subject;
         mail.Body = body;
 
 
         **//add a byte[] attachment to the Mail here**

 
         SmtpClient smtpServer = new SmtpClient(senderSmtp);
         smtpServer.Port = senderPort;
         smtpServer.Credentials = new System.Net.NetworkCredential(senderEmail, senderPassword) as ICredentialsByHost;
         if (sslEnabled){
             smtpServer.EnableSsl = true;
             ServicePointManager.ServerCertificateValidationCallback = 
                 delegate(object s, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) 
             { return true; };
         }
         smtpServer.Send(mail);
         Debug.Log("success");
         
     }
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by Landern · Oct 03, 2014 at 02:21 PM

yes, use System.IO and a MemoryStream which has an overload for taking in a byte array.

 using System.IO;
 
 static public void GmailSend (string mail, string subject, string body)
 {
     MailMessage mail = new MailMessage();
 
     mail.From = new MailAddress("email@email.here");
     mail.To.Add(mail);
     mail.Subject = subject;
     mail.Body = body;
     using (MemoryStream ms = new MemoryStream(SOMEBYTEARRAYVAR))
     {
         mail.Attachments.Add(new Attachment(ms, "SOMEFILENAMEANDJUNK");
     }
     
     SmtpClient smtpServer = new SmtpClient(senderSmtp);
     smtpServer.Port = senderPort;
     smtpServer.Credentials = new System.Net.NetworkCredential(senderEmail, senderPassword) as ICredentialsByHost;
     if (sslEnabled){
         smtpServer.EnableSsl = true;
         ServicePointManager.ServerCertificateValidationCallback = 
         delegate(object s, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) 
         { return true; };
     }
     smtpServer.Send(mail);
     Debug.Log("success");
 }
Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Email attachment on Android & iOS 5 Answers

Unity 3 - Sending Email with C# 6 Answers

How do I send an email on IOS using Application.OpenURL with more than one line of body text? 4 Answers

Send an email from unity to email adress? 1 Answer

How to attach a file to an email on android (using intent and C#)? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges