I’m trying to construct an bulk emailer composer using the mailto html attribute.
set emMailto to "mailto:"
set emAdd to "testmail@testserver.com"
set emBody to "?body="
set emBodyText to "The%20message's%20first%20paragraph.%0a%0aSecond paragraph.%0a%0aThird%20Paragraph."
--set emBodyText to "The%20message's%20first%20paragraph."
set txtURL to emMailto & emAdd & emBody & emBodyText as string
open location txtURL
Objective:
Create the mailto link with formatting to open up with the default email.
What email client are you using. The following works for me with Mail.app:
set emMailto to "mailto:"
set emAdd to "testmail@testserver.com"
set emBody to "?body="
set emBodyText to "The message's first paragraph.
Second paragraph.
Third Paragraph."
set txtURL to emMailto & emAdd & emBody & emBodyText as string
tell application "Finder" to open location txtURL