Merge branch 'bugfix/smtp_client_attachment_newline_v4.2' into 'release/v4.2'

Add newline separator to fix wrong attachment sent (v4.2)

See merge request espressif/esp-idf!13729
This commit is contained in:
Vikram 2021-07-27 16:12:59 +00:00
commit 2b42d78a3f

View File

@ -449,9 +449,9 @@ static void smtp_client_task(void *pvParameters)
/* Attachment */
len = snprintf((char *) buf, BUF_SIZE,
"Content-Type: image/image/png;name=esp_logo.png\n"
"Content-Type: image/png;name=esp_logo.png\n"
"Content-Transfer-Encoding: base64\n"
"Content-Disposition:attachment;filename=\"esp_logo.png\"\n");
"Content-Disposition:attachment;filename=\"esp_logo.png\"\r\n\n");
ret = write_ssl_data(&ssl, (unsigned char *) buf, len);
/* Image contents... */