romias
romias
Yeah... all my emails are OK but the ones that uses a embedded image using: var resources = new Dictionary(); resources["logo"] = @"logopath"; PopulateBody(mailMessage, viewName: "Welcome", linkedResources: resources) Spanish emails...
I think the issue could be fixed setting encoding on the AlternateView object: var alternateView = new AlternateView(fooFileName, fooMediaType) { ContentType = { CharSet = Encoding.UTF8.WebName } }; Could you...
Hi momoski, Doing this your way, doesn't fix the issue AFAIK... remember the problem appears ONLY when embedding an image. Try this: ``` var resources = new Dictionary(); resources["logo"] =...
@erroric, Thanks a lot!! That fixes the issue... Hope this gets into the root code :) Regards!