Regarding the email function in Iphoto

When I email ordinary through mail, I add a attachment in the email, then it is shown inline and as a attachment.
But when I use the email function in iphoto it only inlines the picture, it doesnt add the file as regular attachment, is there anyway I can change that?

the reason why I need this so you understand me.
is that I use to blog from email.
if I email regular no problem at all with my attachment, but if I email through iphoto my blog doesnt recognize the picture in the email so it dont get added.

Similar Messages

  • I want to email photos on a different email system, gmail. How can I get the email icon of iphoto to put my photo on a gmail email?

    I want to email photos on a different email system, gmail. How can I get the email icon of iphoto to put my photo on a gmail email?

    If you have Mail setup a a client for your Gmail account set iPhoto to use Mail.  Then select one of Mail's stationary templates for photos and use it. May not be as good as the iPhoto templates but will be fancier than a plain email window.
    Click to view full size
    OT

  • Regarding the Remote Function Module

    hi,
            Can any body can provide the brief information regarding the Remote Function Module.
    1)How to create the remote function module
    2)how it differ from the normal function module
    3)any special features about this.
    Thanks in advance

    Hi
    RFC (Remote Function Call) is similar to the general SAP fun module: except that in the attributes you click the radio button: RFC enabled;
    and you will be passing an Import parameter DESTINATION to it.
    Other code and usage will be similar to any fun module;
    Have a look at any fun module in SE37 to understand better about the different components of Fun modules;
    Refer this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/22/042518488911d189490000e829fbbd/frameset.htm
    check out the following link it might help you
    http://help.sap.com/printdocu/core/Print46c/de/data/pdf/BCFESDE2/BCFESDE2.pdf
    Function Modules;
    Check this matter.
    Function Modules are Global ABAP programs created by SAP for reusable purpose.they have IMPORT,EXPORT and TABLE parameters, and EXCEPTIONS to through when error occurs.
    You can create them from TCode SE37.
    Go through the following doc:
    Function modules are cross-program, reusable procedures that are organized into function groups, and whose functions are implemented between the statements FUNCTION and ENDFUNCTION. Function modules and their interfaces are created in the Function Builder.
    Function Module Interfaces
    The parameter interface of a function module is defined in the Function Builder. It includes the definition of interface parameters and the specification of exceptions that can be triggered by a function module. The Function Builder automatically generates comment lines below the FUNCTION statement in the source code of the function module, which represent the interface of the function module with the following syntax:
    Syntax
    ... [IMPORTING parameters]
    [EXPORTING parameters]
    [CHANGING parameters]
    [TABLES table_parameters]
    [{RAISING|EXCEPTIONS} exc1 exc2 ...]
    The syntax and semantics of IMPORTING, EXPORTING, CHANGING, RAISING, and EXCEPTIONS mainly correspond to the definition of method interfaces with [CLASS-]METHODS. The additional option of defining table parameters using TABLES is obsolete.
    Interface parameters
    The interface parameters are defined on the relevant tab pages in the Function Builder.
    IMPORTING parameters are input parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input parameter. The content of the actual parameter is passed to the input parameter when the call is made. The content of an input parameter for which 'pass by reference' is defined cannot be changed in the function module.
    EXPORTING parameters are output parameters. When the function module is called, a suitable actual parameter can be specified for every output parameter. The content of an output parameter that is defined for 'pass by value' is transferred to the actual parameter if the function module is completed without errors. An output parameter that is defined for pass by reference is not initialized when the function module is called.
    CHANGING parameters are input and output parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input or output parameter. When the function module is called, the content of the actual parameter is passed to the input/output parameter, and when the function module is completed, the content of the input/output parameter is passed to the actual parameter.
    TABLES parameters are table parameters. Table parameters are obsolete CHANGING parameters that are typed as standard tables with a header line. If an internal table without a header line or a table body is passed as an actual parameter to a formal parameter of this type, an empty local header line is generated in the function module. If an internal table with a header line is used as an actual parameter, both the table body and the header line are passed to the function module. Pass by value is not possible in formal parameters defined using TABLES. Formal parameters defined with TABLES can be replaced by formal parameters defined with CHANGING. A local work area can be created for the internal table in the function module by using the addition LIKE LINE OF itab of the DATA statement.
    Exceptions
    The exception of a function module are defined on the Exceptions tab page in the Function Builder. Here you can select exception classes to define whether class-based exceptions are declared or non-class-based exception are defined. Class-based exceptions are represented in the above syntax by RAISING, and non-class-based exceptions are represented by EXCEPTIONS.
    The addition RAISING is used to declare class-based exceptions that can be propagated from the function module to the caller. Exceptions in the categories CX_STATIC_CHECK and CX_DYNAMIC_CHECK must be explicitly declared, otherwise a propagation can lead to an interface violation. A violation of the interface leads to the treatable exception CX_SY_NO_HANDLER. Exceptions of the category CX_NO_CHECK are implicitly always declared. The declaration of exceptions of the category CX_STATIC_CHECK is statically checked in the syntax check. For exceptions of the category CX_DYNAMIC_CHECK, the check is not performed until runtime. In a function module in which class-based exceptions are declared with the RAISING addition, the statement CATCH SYSTEM-EXCEPTIONS cannot be used. Instead, the relevant treatable exceptions should be handled in a TRY control structure.
    The addition EXCEPTIONS is used to define a list of non-class-based exceptions that can be triggered in the function module using the statements RAISE or MESSAGE RAISING. Exceptions defined in this way - as with formal parameters - are bound to the function module and cannot be propagated. If an exception of this type is triggered in a function module, and no return value has been assigned to it with the homonymous addition EXCEPTIONS of the CALL FUNCTION statement when the call was made, this leads to a runtime error.
    Note
    For new developments after release 6.10, SAP recommends that you work with class-based exceptions that are independent of the function module.
    RFC is a technology which is used to access a functions (Modules) from
    the remote systems.
    If a function module is set as remote enabled which can be access from
    the remote system via RFC.Eg: U can access the Remote enabled function modules in ur VB,Webdynpro,Java,Visual composer program.
    A function module can be set as remote enabled by SE37->Go to ur FM->click the option Button "remote enabled".
    But Normal function modules can not accessd from the remote system.
    Good Example for RFC enabled function module is : BAPI(Business Application Programming Interface)
    Note: All BAPIs are Remote enabled but not all remote enabled function modules are BAPI.
    CALLING A FUNCTION MODULE:
    1)In U ABAP Editor --> Click "Patter" ---> Selection Option Button "Call Function"
    --> Write the Corresponding FM name --> Hit Enter
    2)The appropriate import ,export Parameters will be displayed in ur editor
    3)Pass the Values Here.
    Also check these links.
    http://www.geocities.com/victorav15/sapr3/abapfun.html
    Check this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    Check this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    See the following links:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/9f/db970e35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Do i need to upgrade from OS X 10.5.8 to a new version to be allowed to be able to use the print function of Iphoto 08 ?

    Do i need to upgrade from OS X 10.5.8 to a new version to be allowed to be able to use the print function of Iphoto 08 ?

    You can upgrade to iPhoto '09 with a purchaed iLife '09 DVD - or yu can upgrade your OS and purchase an iLife '11 DVD
    Eitehr shuld be aviailable from amazon, eBay an dother places
    LN

  • Getting the Email function to work

    I have synced my IPhone to my computer and am getting an error message that it didn't complete or set up the email function. Why is that? I have also looked at the settings and made a couple of changes but it still will bring in my messages and send my outgoing messages.
    Is there a phone number to call for help in walking me through this email setup process? I am using Comcast cable and using Outlook2007 to manage my emails.
    Waldo Yeager

    Easiest thing to do is to walk into the Apple Store and goto the Genius Bar, and let then show it to you physically.
    I just had them show me how to set-up an account on it, separate from what I already had with my .Mac account.

  • Font size issue with the email functionality of infopath form

    Hi,
    We have a SharePoint list created and customised the form to send the form via email using email functionality in infopath form.
    We have made the font size of the form fields( rich text box) to 11. But it is showing as 10 in email. Also for a text box we set the font size to 14. But it is 13.5 in the email.
    Could anyone please let me know how to fix this issue?

    http://social.technet.microsoft.com/Forums/sharepoint/en-US/afbd9fc3-b8d3-4ef9-a8bf-9cb136d12039/formatting-problem-with-email-from-an-browser-enabled-infopath-2010-form-in-sharepoint-2010?forum=sharepointcustomizationprevious
    Yes, this is normal. Forms Services has to convert the form to an aspx page, and things get lost in translation when this gets submitted via email.  My workaround has always been to set static widths to columns/controls, but you said that didn't work
    for you?  It's always worked for me.
    https://go4answers.webhost4life.com/Example/infopath-send-form-email-162481.aspx
    http://www.formotus.com/15413/blog-infopath/making-the-most-of-email-submit-with-infopath-and-formotus-forms

  • Regarding the obsolute function modules

    Hi All,
    below function module are obsolute in 4.6c ,what are the new function modules in ECC 6.0.
    1.GRAPH_RECEIVE
    2.GRAPH_SET_CUA_STATUS
    already i search in sdn but i didnt get exact answer................
    plz help me.....
    Regards,
    Madhu

    Hi
    Though these function modules are set to obsolete,they are still maintained and supported by SAP and can be used in your application further.  They are set as obsolete in order to avoid the usage in new development projects.       When starting new developments it is recommended to use class 'cl_gui_chart_engine' .
    Hope this is helpful.

  • Unable to recover my wordpress site's password because the email function is not ennabled

    I have a wordpress blog I am hosting on azure, and I had let it go inactive for long enough that I have forgotten and completely lost my credentials to log in.  I want to pick the blog back up and write more in it, but I can't recover my password.  I
    have seen some forum posts that talk about how we have to use a word press plug in to do email via smtp rather than the mail function.  My problem is that in order to set up a plug in, I have to log in.  I can log into my azure portal and manage
    the site, but I can't see any way to recover my word press credentials through that.
    Is there any way I can recover my word press credentials being that my wordpress site can't send me the email?
    As I see it a plug in like this won't do me any good without already having my credentials:
    https://wordpress.org/plugins/wp-mail-smtp/installation/
    All that is gold does not glitter, Not all those who wander are lost

    Have you tried resetting your password directly in the database?
    http://www.wpbeginner.com/beginners-guide/how-to-reset-a-wordpress-password-from-phpmyadmin/
    Jim Cheshire | Microsoft

  • Since upgrading to Lion, my PC recipients are not receiving photos I attach to the email sent from iphoto. Why?

    Since I upgraded to Lion, my photos are not attached to emails. Example: I select photos in iphoto, click Share and send the email.
    Recipients tell me that there is 'nothing attached, no photo attached."  Can you help?

    This doesn't work for me at all. I tried entering exactly the same information that I used to set up my regular email account and I'm still getting an error message. I even tried switching to using my gmail account and neither one worked. Then it got hung up and had to repair my database! I have a lot of photos on my Mac (thank goodness they're backed up) and I was really sweating it for a moment.
    Apple is so easy until it's not. I find this to be really aggrevating and I'm irritated that it hasn't been fixed. In fact I did an online search and someone described this same problem in detail and it was exactly what was happening to me. Same error messages.
    I'm frustrated that Apple keeps updating it's operating system and then we go through these glitches.
    And while I'm at it, I have never had such a frustrating time using my login information as I have to get into this forum! Why do they make it so difficult? There's just something about the way it's worded that get's me messed up every time. Meanwhile, at least get iPhoto fixed!

  • How can I change the email used in iphoto

    how can i change the email that is used for iphoto? it goes to my email account that's connected to flickr but i want to have it different as a default. help or suggestions?

    Go to iPhoto's General preference pane and select the email client in the Email photos using: menu.
    Click to view full size
    OT

  • How do i change the email address that iPhoto is set up to share from?

    I set up the email address through the share option in iPhoto and now I want to change it. Is this possible?

    in the preferences fo rthe e-mail client you are using - for iPhoto - iPhoto preferences  ==> Accounts - for mail - mail preferences  ==> accounts
    LN

  • Regarding the basic function of  the *_LEXERs

    We are using Oracle Text to index XML documents that contain an "abstracts" group element. Each document can contain one or more abstracts written in a different language (primarily English, French and German). Thus a single document can contain multiple languages.
    We are wondering if we need to use any of the various LEXER types to deal with the different languages. My understanding of the documentation is that MULTI_LEXER or WORLD_LEXER would not be appropriate, since they work on the document level. AUTO_LEXER documentation seems vague, however... would AUTO_LEXER be able to sense language changes within a document?
    http://download.oracle.com/docs/cd/B28359_01/text.111/b28304/cdatadic.htm#i1007538
    Or, perhaps I needn't be concerned at all, since English, French and German are all "whitespace deliimited languages"-- If the sole function of the lexer is to parse tokens, then is there really any difference between the English lexer and the French/German lexers?
    Thanks.

    Dear Nathand,
    Thanks for your answer, I tried the change and you are right. That shows that this not a standard PID, since that means (and actually I can see it now by checking inside the vi) that it is not using the derivative of the error but the derivative of the process variable. I know that this is used sometimes to prevent the effect of fast changing set-points, but it is a shame that they do not comment on it in the help, and that this is not a selectable feature. Do you know if there is a way to edit these pre-packaged vi's? 
    One more question, about the labview style. I included the sequences just to group terms and make the code more readable to separate the integrator from the derivator and not have a knot of entangled signals. Specially when I run the clean-up diagram, it gets very entangled. I have been looking for another way to do that (container boxes, groups). It would be nice if you could suggest me something I can do for it.
    Thanks again,
    Pablo 

  • Regarding the email notification

    I have a report for pricing. I want to change the email recipient. How do i do that?
    Thank you

    Hi,
    When you run any report and click on sent
    Then on next screen at below there is option to specify RECIPIENT and it's type
    Kapil

  • I teach online and firefox is recommended, Recently, the email functions quit working. They work with Explorer but not firefox. I want to use firefox.

    When using Firefox, I can work in LoudCloud, which is Grand Canyon University's program; however, any locations from which I send students emails, comments, answers to questions, etc., is no longer working. It works when I switch to Internet Explorer, but I want to use Firefox. It is more user-friendly. Should I re-download Firefox?

    Could you check which mail program or site is set to handle "mailto" links and try resetting it:
    orange Firefox button ''or'' classic Tools menu > Options > Applications
    In the search box, type or paste '''mailto''' and pause while Firefox filters the list. You should get one row with a drop-down on the right that lets you choose your mail program or site. If your program is not selected, go ahead and change it now. If it is already selected, try refreshing the setting by changing to another program or site and OK out of the dialog. Then go back and change it back.
    Does that make any difference? If I have misunderstood the email feature you're trying to use, could you describe it in more detail?

  • Why doesn't the email utility in iPhoto use the same names as the drop down menu for TO: in email?

    Why is drop down contac list in email not the same as the drop down contact list when emailing a photo in Iphoto?

    Hello frogwoman6801,
    The Mail application keeps a running list of all addresses that you've previously sent messages to, in addition to referencing your Contacts/Address Book application.
    Mail (Mountain Lion): Manage addresses in the Previous Recipients list
    http://support.apple.com/kb/PH4891
    Best regards,
    Allen

Maybe you are looking for

  • Problems with restore after corruption

    while using my third generation ipod as a disk to transfer pictures from a mac to my pc it froze. i waited for it to turn off, and when i turned it back on (still connected) it gave me the folder with an exclamation point next to it. i was bummed bec

  • Tween using dynamic variable

    So I'm a huge supporter of trying to make my code reusable. I'm trying to build a tween with actionscript that I can use on a number of different object, depending on what variable I load into the function. However, I'm having a hard time writing the

  • Chinese ADA PDF Not Reading Correctly.

    I have a brochure that was originally created in InDesign that I'm trying to make accessible in Acrobat Pro X. When Acrobat "reads" the PDF, it seems to be reading the keystrokes instead of Chinese. I am using Mac OSX. Can this be fixed?

  • HP Photosmart 7525 all-in-one, using Mac desktop OSX 10.9.2

    My printer will not respond to desktop or otehr commands to print. This is a new problem. The "wireless summary" on the printer says " IP Address: not conected", and SSID: N/A, Wireless Direct: On. The computer identifies the printer as 192.168.2.12.

  • Type "/TDM/9_600C00001" is unknown - TDMS ABAP Dump

    Good afternoon, I'm starting the data transfer phase in my TDMS package and I've run across the following error message. TDMS created all the reports it needs for data deletion in the receiver system, but all the reports have a syntax error causeing