Hi Julian,
-- not sure I saw it. How long has it been there? Joachim Am Mittwoch, 30. April 2014 03:03:43 UTC+2 schrieb Julian Ford:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Obdobion, EMan-Runtime - RJF Version for 8.6
-- Thanks for the stuff .... Marten You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by jtuchel
You would remember if you saw it.....I mentioned that I posted my EMan update to Goodies, and then provided some sample code to send an EMail using SSL.
-- I do not know why it was deleted...can I EMail you sample code directly? In the meantime, I will try to post it again. Regards, Julian On Wednesday, April 30, 2014 3:22:25 AM UTC-4, Joachim Tuchel wrote:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by Marten Feldtmann-2
You are most welcom, Marten.
-- I also posted some sample code on here, but my message got deleted for some reason. I am going to try and post again....but if you would like me to send it to you dorectly, let me know. Regards, Julian On Wednesday, April 30, 2014 5:04:02 AM UTC-4, Marten Feldtmann wrote:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by jtuchel
Hello, Joachim.
-- I am sorry this was a long time coming, but if you look in VAST Goodies, you will see I have uploaded a new version of the EMan Runtime map. This will work on 8.5 as well as 8.6, and has support for SSL, but also HTML EMails, BCC issues with Thunderbird and GMail (the BCC recipients were all seeing each other's EMail addresses, since the original inplementation also included the BCC line in the message header, and SOME EMail clients show that), and EMail accounts that require NONE for Auth. The original Eman code is a little hard to look at, but it does seem to be quite solid, and I have used this framework within my own product for several years now. Just to give you a quick example (obviously I have built my own framework around EMan to simplify all of this further, but this should give you an idea of what is basically required): smtpManager := OcEMManager new smtpAuthentication: 'NONE'; smtpRequiresSSL: true; smtpPort: 587; smtpHostName: 'smtp.gmail.com'; smtpUserName: 'myUserName'; smtpPassword: 'myPassword'; returnAddress: '[hidden email]'; hhmmFromGMT: '-0500'; "auditTrail: Transcript;" yourself. mailMessage := smtpManager newMessage from: 'My Name'; to: '[hidden email]'; subject: 'an EMail test'; replyTo: '[hidden email]'; useHtmlContent: false; setMessageToString: 'some EMail message'; yourself. carbonCopyList do: [ :string | mailMessage cc: string ]. blindCopyList do: [ :string | mailMessage bcc: string ]. attachments do: [ :fileName | message attachFile: fileName ]. mailMessage send. If you have any questions at all, please let me know, and I will do my best to respond more quickly. I hope this helps you! Regards, Julian You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by Julian Ford
I posted my message again....and it was deleted again.....did you manage to see it before it was deleted?
-- On Wednesday, April 30, 2014 8:51:04 AM UTC-4, Julian Ford wrote:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by jtuchel
I posted my message again....and it was deleted again.....did you manage to see it before it was deleted?
-- On Wednesday, April 30, 2014 3:22:25 AM UTC-4, Joachim Tuchel wrote:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at http://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Free forum by Nabble | Edit this page |