Easy enough.
-------------------------------------------------------------------------------------------
# dCre: 2013/06/12 08:08
# dMod: 2016/04/03 17:01
# Appl: Mail & Growl
# Task: Toggle Display Remote Images in HTML Mail
# Libs: ELb
# Osax: None
# Tags: @Applescript, @Script, @Mail, @Toggle, @Remote, @HTML, @Images
-------------------------------------------------------------------------------------------
try
tell application "Mail"
if (download html attachments) = true then
set download html attachments to false
set _notification to "Status == [OFF]"
else if (download html attachments) = false then
set download html attachments to true
set _notification to "Status == [ON]"
end if
end tell
display notification _notification with title "Load Images in HTML Messages" sound name "Tink"
on error e number n
stdErr(e, n, true, true) of me
end try
-------------------------------------------------------------------------------------------