@alwayspaws said in eMail Error Message when Updating Order Status to "Delivered":
Side note: I wish the customer's name wasn't in all caps because who writes like that? I don't, but I'm not up to doing the override rigamarole over that. :)
You can change that by editing the .html emails, and take out the text-transform:uppercase, like in this line....
<span class="title" style="font-weight:500;font-size:28px;text-transform:uppercase;line-height:33px">Hi {firstname} {lastname},</span><br/>
doing that will put in their first and last name the way they typed it into the site, so if they did all uppercase, it will be all uppercase, if they did all lowercase, it will be all lowercase...ect.. You might wanna change the text-transform:uppercase to read text-transform:capitalize, that in theory will capt just the first letter in each word of the sentence. Works fine if you have all lowercase, with all uppercase it will leave it uppercase.