Jump to content

Ryan Hart

Newbies
  • Posts

    3
  • Joined

  • Last visited

FileMaker Experience

  • Skill Level
    Expert
  • Application
    21

Platform Environment

  • OS Platform
    Windows
  • OS Version
    Win 10

Ryan Hart's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. Okay, I think I got this figured out... Instead of calling EmailMoveCurrentMessage with the EmailCreate, I have moved it to the EmailSend and now it seems to be better. so it is like this now... EmailConnectSMTP() // This is in a set variable by it self. EmailConnectIMAP() // This is in a set variable by it self. // Then I Create the message EmailCreate($SmtpUserName ; Activities::To ; Activities::Subject ) and EmailCCRecipients( Activities::Cc ) and EmailBCCRecipients( Activities::Bcc ) and EmailSetBody(Activities::Text ) //// All of this is one variable set. // Then I loop through a portal to attach documents. EmailAttachFile( docs_Activities_New::PathToAttachment ) // Then I send EmailSend () and EmailMoveCurrentMessage( "Sent Items" ) The demo file showed it as part of the Create, but it does seem to work better this way. THANKS for your help!
  2. We are using version 2.0.1 of the plugin. The issue seems to be with mac and PC. We are testing with an office365 mailbox I don't see any errors being thrown. The attachment is coming across to the recipient, just not the sent folder. I am connecting to both SMTP and IMAP EmailConnectSMTP() // This is in a set variable by it self. EmailConnectIMAP() // This is in a set variable by it self. // Then I Create the message EmailCreate($SmtpUserName ; Activities::To ; Activities::Subject ) and EmailCCRecipients( Activities::Cc ) and EmailBCCRecipients( Activities::Bcc ) and EmailSetBody(Activities::Text ) and EmailMoveCurrentMessage( "Sent Items" ) //// All of this is one variable set. // Then I loop through a portal to attach documents. EmailAttachFile( docs_Activities_New::PathToAttachment ) // Then I send EmailSend
  3. We are creating an SMTP and IMAP connection to send an email that has attachments. In the end we call EmailMoveCurrentMessage to move the message to the 'Sent Items' Folder. We can see the message appear in the Sent Items Folder, however the attachment is not always included in the resulting message in the Sent Folder. I can't seem to figure out what makes the difference.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.