mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
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:
commit
2b42d78a3f
@ -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... */
|
||||
|
Loading…
Reference in New Issue
Block a user