AshleyMedway / MailJet.NET

.NET Client for MailJet
MIT License
8 stars 11 forks source link

Message attachement #24

Closed AndreJUILLARD closed 7 years ago

AndreJUILLARD commented 7 years ago

Why attacjement are only sent using SMTP and not with API ..?

With the same message, using SMTP System.Net.Mail.SmtpClient serv = new System.Net.Mail.SmtpClient("in-v3.mailjet.com"); serv.Credentials = new System.Net.NetworkCredential("xxx", "xxx"); serv.Send(mess); The message has attachements

And using API MailJet.Client.MailJetClient client = new MailJet.Client.MailJetClient("xxx", "xxx"); client.SendMessage(mess) The email has no attachements ..?

AshleyMedway commented 7 years ago

I'll take a look, it should handle attachments 👍

isimongardner commented 7 years ago

Just to give a heads up, looks like attachments have stopped working in production here. API maybe deprecated. Talking to MailJet.

AndreJUILLARD commented 7 years ago

Ok ... wait & see