<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Dropzone Forums — Action for emailing to a specific person?]]></title>
		<link>https://forums.aptonic.com/topic/625/action-for-emailing-to-a-specific-person/</link>
		<atom:link href="https://forums.aptonic.com/feed/rss/topic/625/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Action for emailing to a specific person?.]]></description>
		<lastBuildDate>Thu, 23 Apr 2026 23:19:49 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Action for emailing to a specific person?]]></title>
			<link>https://forums.aptonic.com/post/1632/#p1632</link>
			<description><![CDATA[<p>If you use the built-in macOS Mail app then you can add a &#039;Run AppleScript&#039; action with the following code. You need to set it to handles &#039;Dragged Files&#039; when configuring the action.</p><p>Also, note that this sends the email immediately when dragging files onto the action so make sure you update the recipient address at the top before using it:</p><div class="codebox"><pre><code>set recipient_address to &quot;recipient@example.com&quot;
set email_subject to &quot;&quot;
set email_body to &quot;&quot;

set all_attachments to {}

repeat with i from 1 to number of items in draggedFiles
    set draggedFile to item i of draggedFiles
    set the_attachment to POSIX path of draggedFile
    set end of all_attachments to the_attachment
end repeat

tell application &quot;Mail&quot;
    activate
    set new_message to make new outgoing message with properties {subject:email_subject, visible:true}
    tell new_message
        make new to recipient at end of to recipients with properties {address:recipient_address}
        set content to email_body
        repeat with the_attachment in all_attachments
            make new attachment with properties {file name:the_attachment} at after the last paragraph
        end repeat
    end tell
    send new_message
end tell</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (John)]]></author>
			<pubDate>Thu, 23 Apr 2026 23:19:49 +0000</pubDate>
			<guid>https://forums.aptonic.com/post/1632/#p1632</guid>
		</item>
		<item>
			<title><![CDATA[Action for emailing to a specific person?]]></title>
			<link>https://forums.aptonic.com/post/1631/#p1631</link>
			<description><![CDATA[<p>I have a recurring need to email stuff (file attachments and/or text) from my personal email address to my work address.</p><p>I have Dropzone 5 installed on my personal Mac. Is there (or could there be) a Dropzone action that would let me drop something (file or text) into the grid and that it would automatically just email it to my work address? It would be the same fixed email address all the time.</p><p>Thank you!</p><p>Mark</p>]]></description>
			<author><![CDATA[null@example.com (markwallac@gmail.com)]]></author>
			<pubDate>Thu, 23 Apr 2026 16:00:24 +0000</pubDate>
			<guid>https://forums.aptonic.com/post/1631/#p1631</guid>
		</item>
	</channel>
</rss>
