Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted September 14, 20213 yr Has anyone seen this? I am testing 4.6.6 in advance of a big upgrade of a 4.4.x site. The welcome confirmation email has a HUGE logo on top that scrolls sideways forever. Any thoughts?
September 15, 20213 yr What are the dimensions of the image which was uploaded? We do not resize the image thus, in past, I have seen rather large sized images uploaded which results in what you’re stating here.
September 15, 20213 yr Author That appears to be the issue. Is there no way to just make the image 100% width in the email versus a hard coded size? This would probably fix it for everyone. Since the community resizes images gracefully, I just assumed that email would as well. Is there a recommended image width if not? The layout is a bit wonky if it's not set to 100%.
September 15, 20213 yr Author The fix in the email template seems easy enough... see below. thoughts? Email template: Email Wrapper Before: <a href='{setting="base_url"}' style='text-decoration: none; color: #262e33; border: 0;'> {{$imgDims=NULL;}} {{if \IPS\Settings::i()->email_logo}} {{try { $imgDims = \IPS\File::get( 'core_Theme', \IPS\Settings::i()->email_logo )->getImageDimensions(); } catch( \Exception $e ) {} }} {{endif}} {{if $imgDims}} <img src='{file="\IPS\Settings::i()->email_logo" extension="core_Theme"}' alt="{setting="board_name"}" width='{$imgDims[0]}' height='{$imgDims[1]}' /> {{else}} {setting="board_name"} {{endif}} </a> After: <a href='{setting="base_url"}' style='text-decoration: none; color: #262e33; border: 0;'> {{$imgDims=NULL;}} {{if \IPS\Settings::i()->email_logo}} {{try { $imgDims = \IPS\File::get( 'core_Theme', \IPS\Settings::i()->email_logo )->getImageDimensions(); } catch( \Exception $e ) {} }} {{endif}} {{if $imgDims}} <img src='{file="\IPS\Settings::i()->email_logo" extension="core_Theme"}' alt="{setting="board_name"}" width='100%' /> {{else}} {setting="board_name"} {{endif}} </a> The key change being to set width to 100% (and delete the hard coded height and width). Height will then auto calculate.
September 15, 20213 yr We cannot assist with customisation as part of support unfortunately, but on a brief look over that, it looks good to me.