Picture(s) simply send to customers email

Hi there,
I'm looking for a solution where a customer selects a picture or even a couple of pictures enters his mail adress and gets those pictures send to his account. Sounds simple, but so far I could'nt quite figure out how to manage. I'll give a short workflow of the intended scenario:
1. Picture taken with (wirelessly) tethered camera - tethered to LR of course.
2. Having a web publishing plugin which automatically shows all the pictures of the folder into which I'm sending the pictures
3. Showing the browser running the plugin on a second screen which actually is a touch screen
4. Customer can flip through the pictures on the touch screen, select one or more and select then to "email" those selected pictures to either himself or whomever he intends to send those
Is there a solution to that, or can you think of one using a LR Plugin?
Thanks! Konstantin

The general syntax for multiple addresses in Entourage is:
tell application "Microsoft Entourage"
activate
make new outgoing message with properties {subject:"filename", recipient:"[email protected]; [email protected]", content:"the_content"}
end tell
In other words, the addresses in your string are separated by a semicolon.

Similar Messages

  • TS3899 I have a new IPad and am trying to send a new email from my contact list with photos attached.  No success.  I can reply to an email ok.  But cannot attach a photo from my pictures.

    I cannot send an email from my contact list and attach a photo from my pictures.  I can reply to emails I have in my inbox BUT i cannot find where I would attach a picture there.

    Since you are a new iPad user .....
    Complete guide to using iOS 6
    http://howto.cnet.com/ios-6-complete-guide/
    Guide to Built-In Apps on iOS
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/guide-to- built-in-apps-ios
    You can download a complete iOS 5 iPad User Guide and iOS 6 iPad User Guide here: http://support.apple.com/manuals/ipad/
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Apple iPad Guided Tours - Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    http://www.youtube.com/watch?v=YT2bD0-OqBM
    http://www.youtube.com/watch?v=ROY4tLyNlsg&feature=relmfu
    http://www.youtube.com/watch?v=QSPXXhmwYf4&feature=relmfu
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download this guide to your iPad.
    iPad User Guide for iOS 5
    http://itunes.apple.com/us/book/ipad-user-guide-for-ios-5/id470308101?mt=11
     Cheers, Tom

  • When I try to go to the photo gallery to choose a picture to send to my email address by using my Iphone it can't send or receive messages. Yahoo password is being asked which I have forgotten. How can I correct this?

    With my my I phone as I try to choose a picture from the photo gallery to send it via email using my Iphone, I can't seem to send nor receive messages anymore. It is asking for my yahoo password. What password will that be as I have forgotten it. I know what my personal password on my yahoo address when I go to a regular laptop or desktop but with Iphone I am unable to to retrieve this password because it does not give you an option to change a password. What shall I do to correct this problem?

    It's the same password.  Go to settings - mail - yahoo - enter the password for your incoming and outgoing mail server.

  • How to send an email with an attachment to the customers email address.

    Hi friends,
    How to send an email with an attachment to the customers email address.
    the attachment will be in doc format.
    Having an Header
    the data which i am sending must be in a TABLE format
    with 5 columns.
    and each column must have a column heading
    Please guide me.
    Thanks in Advance,
    Ganesh.

    *& Report  ZEMAIL_ATTACH                                               *
    *& Example of sending external email via SAPCONNECT                    *
    REPORT  ZEMAIL_ATTACH                   .
    TABLES: ekko.
    PARAMETERS: p_email   TYPE somlreci1-receiver .
    *Here get the values of mail from the table adn6 for the customer address.
    TYPES: BEGIN OF t_ekpo,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
    END OF t_ekpo.
    DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE 0,
          wa_ekpo TYPE t_ekpo.
    TYPES: BEGIN OF t_charekpo,
      ebeln(10) TYPE c,
      ebelp(5)  TYPE c,
      aedat(8)  TYPE c,
      matnr(18) TYPE c,
    END OF t_charekpo.
    DATA: wa_charekpo TYPE t_charekpo.
    DATA:   it_message TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   it_attach TYPE STANDARD TABLE OF solisti1 INITIAL SIZE 0
                    WITH HEADER LINE.
    DATA:   t_packing_list LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            t_contents LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_receivers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
            t_attachment LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            t_object_header LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            w_cnt TYPE i,
            w_sent_all(1) TYPE c,
            w_doc_data LIKE sodocchgi1,
            gd_error    TYPE sy-subrc,
            gd_reciever TYPE sy-subrc.
    *START_OF_SELECTION
    START-OF-SELECTION.
      Retrieve sample data from table ekpo
      PERFORM data_retrieval.
      Populate table with detaisl to be entered into .xls file
      PERFORM build_xls_data_table.
    *END-OF-SELECTION
    END-OF-SELECTION.
    Populate message body text
      perform populate_email_message_body.
    Send file by email as .xls speadsheet
      PERFORM send_file_as_email_attachment
                                   tables it_message
                                          it_attach
                                    using p_email
                                          'Example .xls documnet attachment'
                                          'DOC'
                                          'filename'
                                 changing gd_error
                                          gd_reciever.
      Instructs mail send program for SAPCONNECT to send email(rsconn01)
      PERFORM initiate_mail_execute_program.
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT ebeln ebelp aedat matnr
       UP TO 10 ROWS
        FROM ekpo
        INTO TABLE it_ekpo.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  BUILD_XLS_DATA_TABLE
          Build data table for .xls document
    FORM build_xls_data_table.
      CONSTANTS: con_cret TYPE x VALUE '0D',  "OK for non Unicode
                 con_tab TYPE x VALUE '09'.   "OK for non Unicode
    *If you have Unicode check active in program attributes thnen you will
    *need to declare constants as follows
    *class cl_abap_char_utilities definition load.
    *constants:
       con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB,
       con_cret type c value cl_abap_char_utilities=>CR_LF.
      CONCATENATE 'EBELN' 'EBELP' 'AEDAT' 'MATNR'
             INTO it_attach SEPARATED BY con_tab.
      CONCATENATE con_cret it_attach  INTO it_attach.
      APPEND  it_attach.
      LOOP AT it_ekpo INTO wa_charekpo.
        CONCATENATE wa_charekpo-ebeln wa_charekpo-ebelp
                    wa_charekpo-aedat wa_charekpo-matnr
               INTO it_attach SEPARATED BY con_tab.
        CONCATENATE con_cret it_attach  INTO it_attach.
        APPEND  it_attach.
      ENDLOOP.
    ENDFORM.                    " BUILD_XLS_DATA_TABLE
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          Send email
    FORM send_file_as_email_attachment tables pit_message
                                              pit_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     changing p_error
                                              p_reciever.
      DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
      ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = pit_attach[].
    Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = w_doc_data
                put_in_outbox              = 'X'
                sender_address             = ld_sender_address
                sender_address_type        = ld_sender_address_type
                commit_work                = 'X'
           IMPORTING
                sent_to_all                = w_sent_all
           TABLES
                packing_list               = t_packing_list
                contents_bin               = t_attachment
                contents_txt               = it_message
                receivers                  = t_receivers
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
    Populate zerror return code
      ld_error = sy-subrc.
    Populate zreceiver return code
      LOOP AT t_receivers.
        ld_receiver = t_receivers-retrn_code.
      ENDLOOP.
    ENDFORM.
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          Instructs mail send program for SAPCONNECT to send email.
    FORM initiate_mail_execute_program.
      WAIT UP TO 2 SECONDS.
      SUBMIT rsconn01 WITH mode = 'INT'
                    WITH output = 'X'
                    AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    *&      Form  POPULATE_EMAIL_MESSAGE_BODY
           Populate message body text
    form populate_email_message_body.
      REFRESH it_message.
      it_message = 'Please find attached a list test ekpo records'.
      APPEND it_message.
    endform.                    " POPULATE_EMAIL_MESSAGE_BODY
    regards,
    venkat.

  • I put together and sent 10 pictures from my granddaughter's birthday party. Is there a way of sending them with a link recipients can click on, rather than having all the pictures download as part of the email message?

    I put together and sent 10 pictures from my granddaughter's birthday party. Is there a way of sending them with a link recipients can click on, rather than having all the pictures download as part of the email message?

    Hello userlarry, do you have Mobile Me? You could use that. Or you could compress them, you would still need to send them in an email, but it would help with size limitations of emails.
    To compress them, put them in a folder and right click on the folder. You should see a Compress option. Then just drag the .zip file into your mail.
    Regards,
    Graham

  • I've just subscribed to adobe exportpdf. Can I simply send an email with the converted file?

    I've just subscribed to adobe exportpdf. Can I simply send an email with the converted file?
    THanks in advance
    solromac

    I do not understand your question; what happens when you try?
    [topic moved to ExportPDF forum]

  • I bought an unlocked iphone 4s and it is not sending messages or emails with pictures taken with it.  What do I have to do?

    How do I send messages and emails with pictures attached from my iphone 4 s?

    Contact your Carrier and check you MMS enabled on your Plan.

  • Reducing the size of pictures to send in an email

    I wanted to export a batch of pictures all at once to send in an email.  I found a way that is both quick and easy all inside iPhoto.  First I choose all the pictures I want to send.  I drag them to the desktop and put them in a folder.  Fortunately in iPhoto this does not delete them from the main library like on a PC.  I now go to import.  I import the entire group of pictures back into iPhoto.  This puts them in a file called, "Last Imported"  I can now select that entire grop and export.  I export to a web, (second choice to the right on the export window)  Export to your desktop.  A folder will be created.  Inside that folder will be, Images, all your pictures reduced in size, and even individal web pages and even thumbnails.  At this point I drag all the pictures in my recent import file to the trash, so I dont have duplicates in my library.  May sound like a lot of work but it is honestly quick and easy and gives you pictures which are small and easy to attach.  The last step is to open up my mail and get ready to send.  I can select all the pictures to attach and since they are small they attach quickly and off they go.

    Even easier is to select the photos and export them (file menu ==> export) seting the desired size to a desktop folder and e-mail from there
    Or set apple Mail as your e-mail client in the iPhoto preferences and then you get a size option when you create the e-mail
    LN

  • I just started using Adobe Send but customers are not receiving my emails

    I am using Adobe Send to send pdf files to my customers. I choose my files, enter my customers email address & copy me...hit send.
    However, my customers and myself are not getting my emails...anyone else have this happen? How do I fix? I can't track the emails if my recipients are not receiving them?!

    There are still many accounts who are not getting the emails…what I am doing is copying myself at my msn.com as that account seems to get all of them.
    So then once received, I then forward them from my msn email address. Then they get them.
    I think they get put in spam or blocked because because the from email address says (faked from)
    My bigger question — my links are expiring – this link below doesn’t work anymore???
    <https://files.acrobat.com/a/preview/a0aaa21d-d509-4ac5-b6b4-6f0c3eec337a> <https://files.acrobat.com/a/preview/b3a351a3-3b8a-4d94-b9eb-a71fc693f1a3> <https://files.acrobat.com/a/preview/17e2ba1f-d971-4bd8-955d-0ab2729dbdd9> <https://files.acrobat.com/a/preview/5f834289-94e9-42c2-898d-75ed90595064> NEW! ONLINE CATALOGS! <https://files.acrobat.com/a/preview/a0aaa21d-d509-4ac5-b6b4-6f0c3eec337a> <http://tinyurl.com/CatalogsApril2015> <https://files.acrobat.com/a/preview/fbe2dd3b-cc8f-434e-8350-18b2b8977acc> <https://files.acrobat.com/a/preview/b3a351a3-3b8a-4d94-b9eb-a71fc693f1a3> <https://files.acrobat.com/a/preview/17e2ba1f-d971-4bd8-955d-0ab2729dbdd9> <https://files.acrobat.com/a/preview/5f834289-94e9-42c2-898d-75ed90595064> Shop by Brand or Occasion! <https://files.acrobat.com/a/preview/a0aaa21d-d509-4ac5-b6b4-6f0c3eec337a>
    Jane Bayer
    Evergreen Colorado Territory Manager
    303-946-3648 Cell
    1-800-921-1198 Fax
    www.myevergreen.com<applewebdata://D4BD4473-0E8C-4F3E-95A4-742A945BE6B0/www.myevergreen.co m>
    Product Videos!<http://www.myevergreenonline.com/t-productvideos.aspx>
    How to register online!<http://help.myevergreenonline.com/en/knowledgebase/how-to-register-for-an-account/>

  • When I email myself a picture from my iphone 4s, the email is sent from an email account that I don't have set up as the default account. How can I set it up so that the emails are coming from the default account selected in Mail?

    Under my mail tab, it shows that I have a specific email account set up as a default account. That is the account I would like for me emails to be sent from. But when I actually send out an email such as a picture, it is being sent from one of my different email accounts that is not set up as the default. How can I change this so that future messages will be sent from the default account? Any advice would be appreciated. Thanks!!

    All photo attachments received or sent with the iPhone's Mail app appear inline or viewed in place within the body of the message when viewed with the iPhone's Mail app which is the same with the Mail.app on a Mac. A photo attachment that appears inline or viewed in place does not mean the photo was not sent as a true attachment to the message. A photo attached to a message with the iPhone's Mail app is sent as a true attachment to the message. How an inline or viewed in place attachment appears on the recipient's end depends on the recipient's email client. If the recipient's email client does not support viewing an attached photo inline or viewed in place within the body of the message, the attached file must be manually selected and opened to viewed.
    I am getting the email with the Picture Inline ( not as attachment),The picture is shown distorted , no metter what i do and with what mail client i am using (Gmail\Hotmail\My Enterprise exchange mail), i still get the same behavior.
    With which email client?

  • How do i send photos in email as jpegs?

    how do I send photos in email as jpeg files rather than sending the picture as it is. when i attach a picture it appears as it is rather than a file. is there a way to attach it as jpeg file rather than a single image?

    I mean when I have dropped a photo into the email how do I then change that to an icon so that other non Mac users can see it easier

  • New Adobe Photoshop elements 11-can not share pictures. I do use AOL email. Get error of "Elements 11 Organ. has stopped working,  I have looked into sharing tab and my only option is Adobe email settings.  I do have outlook set up to work on computer run

    New Adobe Photoshop elements 11-can not share pictures. I do use AOL email. Get error of "Elements 11 Organ. has stopped working,  I have looked into sharing tab and my only option is Adobe email settings.  I do have outlook set up to work on computer running windows 8.1  Please help, Mainly use to share pictures.  Thanks!

    One thing puzzles me:
    RedClayFarmer wrote:
    I then found one suggestion that the problem might involve permissions. The suggestion was to right click PhotoshopElementsOrganizer.exe in its installation folder (which on my computer is at at D:\Photo\Elements 11 Organizer) and run Organizer as an administrator. This also failed.
    I don't understand why running the exe from the installation folder would have worked.
    I would have simply tried to run that exe from its real location :
    Sorry, I can't help you more about permissions...

  • How to send photos as email attachments???

    This is a ridiculously easy and simple question but I'm a mac newbie and can't figure out how to send photos as email attachments, not embed them in the body of the email. Every time I go to send a picture or group of pictures from i-photo an email message opens....the pictures are embedded in the body of the email and that's how they appear to receipients. In a test, I've sent them to a PC...the message comes through just fine but the photos don't have separate attachments that I can click on and "save as." they come through as bitmap files. Any ideas? THANK YOU.

    It will not ALWAYS fix the problem that this topic is about; I had my Mail preferences set to send as Plain Text and it did not fix the problem. Additionally, since there is NOT an option in Iphoto as you previously noted, it might be confusing to some people.
    However, for those of you who have the same problem, there seems to be a solution that worked for me. I also had the problem that Mail was overriding my sizing preference when I selected them in Iphoto (share > email) and always sending them as small instead of medium as I preferred.
    Since it seems that sometimes Mail does not deploy the plain text default so you need to kick start it to remember. This is how I did it....
    - Select the photos you want and hit SHARE > EMAIL in Iphoto
    - Now, in Mail click on the photo browser button
    - Find another photo in Iphoto via the browser and drag and drop it into the email that you're composing
    - You'll see a size option appear in the bottom right hand corner
    - Playing around with the sizing option a few times kicked it into gear and it seems to be working better since then
    I hope that helps anyone who has had the same problem.

  • AA XI Standard: No "Share" button to simply attach pdf to email without asking for review and comment?

    In AA X, there was a "Share" button which would allow me to attach a copy of the current pdf to an email to be sent out. The pdf wouldn't be for "review" or "comment." Just a plain, vanilla, "Here's a copy of a document."
    I can't find that capability in XI Standard. I found a way to send for comment and review. How can I just send? (Other than creating an email in my client (Outlook) and then attaching from there, which then requires me to navigate to the desired pdf).
    Many thanks.
    Ken

    Vikrantt,
    Thanks for your response. However that's not exactly what I'm looking for. Doing that invites the recipient to comment. As my original post said, I'm not looking to invite comments on the document. I just want to send it by email, as I could with Acrobat X.
    Is there no way to do that simply? As my original post said, the only way I can see is to create an email in Outlook and then attach a file, which means I have to navigate to the location where the pdf is stored. A lot of extra steps.
    Thanks.
    Ken

  • Why don't mail show the picture of the sender in the mail I receive

    Hi everybody
    I am using Mail and Address book and I have pictures of my friends and colleagues etc. and therefore the mail program should show me a picture of the sender when I receive e-mail from one of them. It also does normally but when I have two e-mail addresses on the same person it don't show any pictures.
    Why is that?
    Best
    Kudsk

    This looks like a bug, and should be reported using OS X Feedback. It also happens if you browse your sent mailbox (well, it does for me, anyway). In the sent mailbox, if the recipient has no picture in my Address Book, no picture appears. If the recipient has a picture and a single email address, my picture appears. If the recipient has a picture and multiple email addresses, sometimes my picture appears and sometimes not. I suspect it is there if the email is to the first-listed address, and not otherwise. It is probably the same for incoming emails.
    I don't think there is anything you can do to cure it.
    AK

Maybe you are looking for

  • How do i download itunes to windows? nothing i have tried is working

    I went to the support tab on the itunes page to search for ways to download itunes to windows because i tried pressing the download now button but nothing happened. No window popped up asking to run or save program as usual. Someone else was having t

  • Import problem due to Character set

    I did an export of an entire schema using Original export utility(not Datapump) in 10G Release 1 (10.1.0.3.0). When i tried to import it. I got the error mentioned below. It is something to do with the character set. What settings do i have to give d

  • New printing problem with InDesign CS4

    After having great success with Aisolve's earlier fix on printing from InDesign CS4 after upgrading to Lion, I'm having a new problems after installing the OS X 10.7.2 upgrade last week. When I try to print from  InDesign CS4 and Illustrator CS4 to m

  • Pre-newbie help! Computer guidance needed so wanted to ask the pros (you)

    Hi all, I am a jewelry designer - have been for over 25 years (pencil to paper) and want expand my knowledge and learn Illustrator and Photoshop. I want to come out of the dark ages regarding HOW I design to become more efficient AND hopefully increa

  • How do I download whatsapp in the mini iPad ?

    How do I download whatsapp in the mini iPad ?