<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Sending mail via utolisp that includes both subject and body in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12619913#M17052</link>
    <description>&lt;P&gt;Glad to have helped…cheers!!!&lt;/P&gt;</description>
    <pubDate>Wed, 06 Mar 2024 11:45:52 GMT</pubDate>
    <dc:creator>paullimapa</dc:creator>
    <dc:date>2024-03-06T11:45:52Z</dc:date>
    <item>
      <title>Sending mail via utolisp that includes both subject and body</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12610564#M17044</link>
      <description>&lt;P&gt;&amp;nbsp;In &lt;A title="https://www.computerhope.com/issues/ch000056.htm" href="https://www.computerhope.com/issues/ch000056.htm" target="_blank" rel="noopener"&gt;this&lt;/A&gt; website&amp;nbsp;it shows how to create a mail to a specific mail that includes but a subject and a body in the email by using HTML, and it works perfectly. When using basically the same code in autocad like this:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(command "start" "mailto:test@example.com?subject=TestSubject&amp;amp;body=TestBody!")&lt;/LI-CODE&gt;&lt;P&gt;a mail is created with the correct receiver, correct subject, but the body is empty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I reverse the order of body and subject in the command like this&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(command "start" "mailto:test@example.com?body=TestBody!&amp;amp;subject=TestSubject!")&lt;/LI-CODE&gt;&lt;P&gt;then the body is included, but not the subject.&lt;/P&gt;&lt;P&gt;How can I include both subject and body at the same time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have searched for this and found solutions using visual lisp, but all those force the mail to be either closed or sent before you can do anything with either outlook or AutoCAD, and I want to avoid that functionality. If there is a way to make the visual lisp solution to not hijack both AutoCAD and Outlook that would work also.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 10:42:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12610564#M17044</guid>
      <dc:creator>jakob_holmquist</dc:creator>
      <dc:date>2024-03-04T10:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: Sending mail via utolisp that includes both subject and body</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12617767#M17045</link>
      <description>&lt;P&gt;&lt;A href="https://superuser.com/questions/914365/mailto-command-line-not-able-to-set-additional-parameters" target="_blank"&gt;https://superuser.com/questions/914365/mailto-command-line-not-able-to-set-additional-parameters&lt;/A&gt;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(command "start" "mailto:test@example.com?subject=TestSubject^&amp;amp;body=TestBody!")&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 05 Mar 2024 20:44:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12617767#M17045</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-03-05T20:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Sending mail via utolisp that includes both subject and body</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12617771#M17046</link>
      <description>&lt;P&gt;**modified**&lt;/P&gt;&lt;P&gt;and for spaces use %20:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(command "start" "mailto:test@example.com?subject=Test%20Subject^&amp;amp;body=Test%20Body!")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 20:48:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12617771#M17046</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-03-05T20:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Sending mail via utolisp that includes both subject and body</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12618058#M17047</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Might there be any way to do that using Gmail?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 22:30:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12618058#M17047</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2024-03-05T22:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sending mail via utolisp that includes both subject and body</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12618060#M17048</link>
      <description>&lt;P&gt;If your default email client app is configured to send/receive email with your gmail account then yes.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 22:33:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12618060#M17048</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-03-05T22:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sending mail via utolisp that includes both subject and body</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12618281#M17049</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp; I'll have to figure out how to do that.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 23:23:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12618281#M17049</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2024-03-05T23:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Sending mail via utolisp that includes both subject and body</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12618287#M17050</link>
      <description>&lt;P&gt;For example, I use Outlook as my desktop default email client.&lt;/P&gt;&lt;P&gt;Then I follow these instructions to setup my Outlook to connect to my gmail:&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.microsoft.com/en-us/office/set-up-gmail-accounts-46274497-95ea-4a7d-9651-d246aa63eb5e" target="_blank"&gt;https://support.microsoft.com/en-us/office/set-up-gmail-accounts-46274497-95ea-4a7d-9651-d246aa63eb5e&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 23:25:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12618287#M17050</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-03-05T23:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: Sending mail via utolisp that includes both subject and body</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12619657#M17051</link>
      <description>&lt;P&gt;Thank you, this was exactly what I was looking for! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 10:18:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12619657#M17051</guid>
      <dc:creator>jakob_holmquist</dc:creator>
      <dc:date>2024-03-06T10:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Sending mail via utolisp that includes both subject and body</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12619913#M17052</link>
      <description>&lt;P&gt;Glad to have helped…cheers!!!&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 11:45:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sending-mail-via-utolisp-that-includes-both-subject-and-body/m-p/12619913#M17052</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-03-06T11:45:52Z</dc:date>
    </item>
  </channel>
</rss>

