Mailsmith
Other Programs
Scripts
Accounts
Address Book
Editing
Filters
General
Import/Export
Links
Mailboxes
Memory
Scripting
Speed
send/receive
Tips/Tricks


Mailsmith FAQ: Editing
Why isn't text font in the message area anti-aliased?
Created: 2002-03-26 Modified: 2002-03-26 Version: 1.5 By: jem
Turn on "Allow Text Smoothing" in the "Text Editing" panel in the preference window

 

What is this Philip bar?
Created: 2002-03-30 Modified: 2002-03-30 Version: 1.5 By:
See the BBEdit FAQ (removed)

 

How can I add enclosures to messages using a shortcut?
Created: 2002-04-21 Modified: 2002-04-21 Version: 1.5 By: Christian Smith
Take the script below and assign a shortcut to it
-- begin script
set f to choose file
tell application "Mailsmith 1.5"
	tell message window 1
		make new enclosure at end with properties {file:f}
	end tell
end tell
-- end script

 

How can I encode my email address to make it more difficult for spam robots?
Created: 2002-04-21 Modified: 2002-04-21 Version: 1.5 By: Jim Correia and "bughouse"

We may be able to provide a general purpose utility in the future (after we better understand the needs and make sure it jives well with the other options in the translator).

Meanwhile, you can use a script I posted awhile back that is a crude way for masking email addresses. Type your address, select it, run the script, and it generates a mailto link.

tell application "BBEdit 6.5"
	tell text window 1
		set s to selection as string
		set entity_s to ""
		repeat with c in s
			set n to ASCII number c
			set entity_s to entity_s & "&#" & n & ";" as string
		end repeat
		set mailto_s to "<a href=\"mailto:" & entity_s & "\">" & entity_s & "</a>" as string
		set selection to mailto_s
	end tell
end tell

and from "bughouse"

give this a try for encoding email addresses: http://www.apple.com/downloads/macosx/system_disk_utilities/spamstopper.html