grzesl / ESPMail

Library for sending emails.
GNU General Public License v3.0
15 stars 6 forks source link

Compiler error with ESPMail.h - wrong slash ("\" instead of "/") #2

Open nghielme opened 7 years ago

nghielme commented 7 years ago

Inside ESPMail.h:

#ifndef ESPMail_h
#define ESPMail_h

#if defined(ARDUINO_ARCH_AVR) || defined(ARDUINO_ARCH_ESP8266) || defined(ARDUINO_ARCH_SAMD) || defined(ARDUINO_ARCH_SAM)
#include "Arduino.h"
#include <Client.h>
#include "libquickmail\quickmail.h"
#else
#error Only Arduino MKR1000, Yun, Uno/Mega/Due with either WiFi101 or Ethernet shield. ESP8266 also supported.
#endif

the line #include "libquickmail\quickmail.h" should be changed to #include "libquickmail/quickmail.h" (slash error).

g01d10x commented 5 years ago

I found this one also . I think it was originally built for Windows file storage .. Mac/Linux uses the "/" instead.