Jeff, if you want to jazz up your emails a bit, try the following...
set downloadpath1 to "VALIDFILENAME1.jpg"
set downloadpath2 to "VALIDFILENAME2.jpg"
set downloadpath3 to "VALIDFILENAME3.jpg"
tell application "URL Access Scripting"
download filetoget1 to downloadpath1 replacing yes
download filetoget2 to downloadpath2 replacing yes
download filetoget3 to downloadpath3 replacing yes
end tell
set myAttachments to {downloadpath1, downloadpath2, downloadpath3}
set mySMTP to "00.00.00.00"
set mySubject to "subject of email to send"
set myBody to "Body text of Animal Welfare email to send" & return & return
set ColoredText to "Animal Welfare"
set textcolor1 to {50000, 20000, 6000}
set textcolor2 to {56342, 2442, 607}
tell application "Mail"
activate
set newMessage to make new outgoing message with properties {address:myTo, subject:mySubject, content:myBody, return:myFrom}
tell newMessage
try
set y to count of myBody
set color of characters 1 thru y of content to textcolor1
end try
set x to offset of ColoredText in myBody
set font of characters x thru (x + (count of ColoredText)) of content to "Helvetica Bold"
set color of characters x thru (x + (count of ColoredText)) of content to textcolor2
set x to 1
repeat with LogoPath in myAttachments
set LogoPath to POSIX path of LogoPath
make new attachment with properties {file name:LogoPath} at after the last paragraph
set last paragraph of content to last paragraph of content & return & return & "Image " & x & return & return
set x to x + 1
end repeat
repeat with themailitem in myTo
make new to recipient at end of to recipients with properties {address:themailitem}
end repeat
(*repeat with themailitem in ReportCCRecepients
make new cc recipient at end of cc recipients with properties {address:themailitem}
end repeat*)
send
end tell
end tell
Regards