Changes between Version 10 and Version 11 of Docs/825gen2/Dev/Networking/SendEmail
- Timestamp:
- 02/15/24 09:15:06 (9 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/Networking/SendEmail
v10 v11 35 35 }}} 36 36 37 Create an email 37 Create an email as a text file. 38 38 39 39 {{{ … … 41 41 42 42 From: wilsonwareapps@gmail.com 43 To: d on@wilsonware.com43 To: dwilson@cardet.com 44 44 Subject: Test email from 825 45 45 … … 84 84 }}} 85 85 86 E-mail sent successfully with no prompt for password 86 The Email sent successfully with no prompt for password. 87 87 88 88 This could be done from app code using a system call. … … 91 91 How to send file attachments? 92 92 93 msmtp does not have support for file attachments directly. The message must be encoded in mime format.93 msmtp does not have support for file attachments directly. The message must be encoded into mime format. 94 94 95 95 Update message.txt to add MIME encoding … … 145 145 [[Image(825test_email.png)]] 146 146 147 We may create or find a library to generate mime encoded emails from application code. 148