I'm experiencing some weird behavior on Amazon SES. I have a webapp that sends html emails using SES, recently i've noticed that some images dont load after receiving the email.
The images are stored in S3.
After inspection i've noticed just in some cases that the url of the image is being modified. Taking this example: the url of the image is http://example.com/image_name.png, after sending the email the URL of the image become http://example.com/image_name..png (notice the double dot before the extension).
If i send the same email to gmail and hotmail, i experience this issue, but with different images. Gmail puts double dot in image_2.png and hotmail puts it in image_1.png.
Im using Codeigniter email class to send the emails via SMTP.
'crlf' => "\r\n"and it seems to fix this. Although it just happens if i'm sending the email with SES smtp. I tried with other smtp host and didnt have to add this config option. - AFRC