Hii Ani P. how u did invoice email.

Hii Ani P.
how u did email send ..
my req is to send order confirmaytion thru email with pdf attcmnet.
please help in this..

Here is the code to send the Smartform to mail as PDF attachment.
*& Report ZTEST_PDF_MAIL
REPORT ZTEST_PDF_MAIL.
Internal Table declarations
DATA: I_OTF TYPE ITCOO OCCURS 0 WITH HEADER LINE,
I_TLINE TYPE TABLE OF TLINE WITH HEADER LINE,
I_RECEIVERS TYPE TABLE OF SOMLRECI1 WITH HEADER LINE,
I_RECORD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
Objects to send mail.
I_OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
I_OBJTXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
I_OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
I_RECLIST LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
Work Area declarations
WA_OBJHEAD TYPE SOLI_TAB,
W_CTRLOP TYPE SSFCTRLOP,
W_COMPOP TYPE SSFCOMPOP,
W_RETURN TYPE SSFCRESCL,
WA_DOC_CHNG TYPE SODOCCHGI1,
W_DATA TYPE SODOCCHGI1,
WA_BUFFER TYPE STRING, "To convert from 132 to 255
Variables declarations
V_FORM_NAME TYPE RS38L_FNAM,
V_LEN_IN LIKE SOOD-OBJLEN,
V_LEN_OUT LIKE SOOD-OBJLEN,
V_LEN_OUTN TYPE I,
V_LINES_TXT TYPE I,
V_LINES_BIN TYPE I.
CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
EXPORTING
FORMNAME = 'ZTEST'
IMPORTING
FM_NAME = V_FORM_NAME
EXCEPTIONS
NO_FORM = 1
NO_FUNCTION_MODULE = 2
OTHERS = 3.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
W_CTRLOP-GETOTF = 'X'.
W_CTRLOP-NO_DIALOG = 'X'.
W_COMPOP-TDNOPREV = 'X'.
CALL FUNCTION V_FORM_NAME
EXPORTING
CONTROL_PARAMETERS = W_CTRLOP
OUTPUT_OPTIONS = W_COMPOP
USER_SETTINGS = 'X'
IMPORTING
JOB_OUTPUT_INFO = W_RETURN
EXCEPTIONS
FORMATTING_ERROR = 1
INTERNAL_ERROR = 2
SEND_ERROR = 3
USER_CANCELED = 4
OTHERS = 5.
IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
I_OTF[] = W_RETURN-OTFDATA[].
CALL FUNCTION 'CONVERT_OTF'
EXPORTING
FORMAT = 'PDF'
MAX_LINEWIDTH = 132
IMPORTING
BIN_FILESIZE = V_LEN_IN
TABLES
OTF = I_OTF
LINES = I_TLINE
EXCEPTIONS
ERR_MAX_LINEWIDTH = 1
ERR_FORMAT = 2
ERR_CONV_NOT_POSSIBLE = 3
OTHERS = 4.
IF SY-SUBRC <> 0.
ENDIF.
LOOP AT I_TLINE.
TRANSLATE I_TLINE USING '~'.
CONCATENATE WA_BUFFER I_TLINE INTO WA_BUFFER.
ENDLOOP.
TRANSLATE WA_BUFFER USING '~'.
DO.
I_RECORD = WA_BUFFER.
APPEND I_RECORD.
SHIFT WA_BUFFER LEFT BY 255 PLACES.
IF WA_BUFFER IS INITIAL.
EXIT.
ENDIF.
ENDDO.
Attachment
REFRESH: I_RECLIST,
I_OBJTXT,
I_OBJBIN,
I_OBJPACK.
CLEAR WA_OBJHEAD.
I_OBJBIN[] = I_RECORD[].
Create Message Body Title and Description
I_OBJTXT = 'test with pdf-Attachment!'.
APPEND I_OBJTXT.
DESCRIBE TABLE I_OBJTXT LINES V_LINES_TXT.
READ TABLE I_OBJTXT INDEX V_LINES_TXT.
WA_DOC_CHNG-OBJ_NAME = 'smartform'.
WA_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
WA_DOC_CHNG-OBJ_DESCR = 'smartform'.
WA_DOC_CHNG-SENSITIVTY = 'F'.
WA_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
Main Text
CLEAR I_OBJPACK-TRANSF_BIN.
I_OBJPACK-HEAD_START = 1.
I_OBJPACK-HEAD_NUM = 0.
I_OBJPACK-BODY_START = 1.
I_OBJPACK-BODY_NUM = V_LINES_TXT.
I_OBJPACK-DOC_TYPE = 'RAW'.
APPEND I_OBJPACK.
Attachment (pdf-Attachment)
I_OBJPACK-TRANSF_BIN = 'X'.
I_OBJPACK-HEAD_START = 1.
I_OBJPACK-HEAD_NUM = 0.
I_OBJPACK-BODY_START = 1.
DESCRIBE TABLE I_OBJBIN LINES V_LINES_BIN.
READ TABLE I_OBJBIN INDEX V_LINES_BIN.
I_OBJPACK-DOC_SIZE = V_LINES_BIN * 255 .
I_OBJPACK-BODY_NUM = V_LINES_BIN.
I_OBJPACK-DOC_TYPE = 'PDF'.
I_OBJPACK-OBJ_NAME = 'smart'.
I_OBJPACK-OBJ_DESCR = 'test'.
APPEND I_OBJPACK.
CLEAR I_RECLIST.
I_RECLIST-RECEIVER = '[email protected]'.
I_RECLIST-REC_TYPE = 'U'.
APPEND I_RECLIST.
CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
EXPORTING
DOCUMENT_DATA = WA_DOC_CHNG
PUT_IN_OUTBOX = 'X'
COMMIT_WORK = 'X'
TABLES
PACKING_LIST = I_OBJPACK
OBJECT_HEADER = WA_OBJHEAD
CONTENTS_BIN = I_OBJBIN
CONTENTS_TXT = I_OBJTXT
RECEIVERS = I_RECLIST
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.
IF SY-SUBRC <> 0.
WRITE:/ 'Error When Sending the File', SY-SUBRC.
ELSE.
WRITE:/ 'Mail sent'.
ENDIF.
If you want to send some text as Body of the Mail then follow this once
when u r callin the FM'SO_NEW_DOCUMENT_ATT_SEND_API1'.. points to remember
1.u have to pass the body of content in table CONTENTS_TXT(ia m using I_OBJBIN) (each line a record) then. suppose i have appended 11 records to the table CONTENTS_TXT .
2.PACKING_LIST(iam usign I_OBJPACK) table u ahve to append a redord as follows
I_OBJPACK-TRANSF_BIN = ' '.
I_OBJPACK-HEAD_START = 000000000000001.
I_OBJPACK-HEAD_NUM = 000000000000001.
I_OBJPACK-BODY_START = 000000000000002
I_OBJPACK-BODY_NUM = 000000000000010.
I_OBJPACK-DOC_TYPE = 'RAW'.
append I_OBJPACK-.
by the above code system treat the first line in table I_OBJBIN as header and the 2nd line to 10 lines tread as body.
CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
EXPORTING
DOCUMENT_DATA = WA_DOC_CHNG
PUT_IN_OUTBOX = 'X'
TABLES
PACKING_LIST = I_OBJPACK
OBJECT_HEADER = WA_OBJHEAD
CONTENTS_BIN = I_OBJBIN
CONTENTS_TXT = I_OBJTXT
RECEIVERS = I_RECLIST
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.
regards,
srinivas

Similar Messages

  • How can I print my purchase history or get an invoice emailed again I deleted by mistake

    How can I get an invoice emailed again or print it via purchase history

    You will have to reformat the HDD in 'Disk Utility' Application to either one strictly for Macs or one that PCs can also utilize.  That is your choice.
    The connection is dependent upon the enclosure the the HDD is in.  If it has a Firewire port, all to the good because Firewire data transfer rates are about twice as fast as USB @.  Your MBP will have that capability.  Otherwise its USB 2.
    If you are anticipating installing Windows on your MBP, you will have to partition the HDD which also can be done in 'Disk Utility'.
    When you format the HDD in 'Disk Utility', it will erase all of the data on that HDD.  If you want to save anything, back it up first.
    Ciao.

  • How can I send email from my yahoo alias account in iPhone5 mail?

    How can I send email from my yahoo alias account in iPhone5 mail?
    I have 2 email accounts: [email protected] is an alias of [email protected]
    In my old iPhone3 I had these accounts set up so that I could send and receive email from both accounts. I did this using the following settings:
    ‘Other’ POP account info:
    Name: xyz
    Address: [email protected]
    Description: alias
    Incoming mail server:
    Host name: pop.mail.yahoo.com
    User name: [email protected]
    Password: password for yahoo account
    Server port: 995
    Outgoing mail server:
    SMTP: smtp.o2.co.uk (o2 is the name of my phone network)
    Server port: 25
    ‘Yahoo!’ account info:
    Name: xyz
    Address: [email protected]
    Password: password for yahoo account
    Description: Yahoo!
    Outgoing mail server:
    Primary server: Yahoo! SMTP server
    Server port: 465
    I’ve tried using the same settings in my new iPhone5, but it doesn’t work. I can receive mail to both accounts, and can send from the Yahoo account, but I cannot send mail from the alias account. When I try, it displays the message: “Cannot send mail. A copy has been placed in your Outbox. The recipient ‘[email protected]’ was rejected by the server”.
    I’ve tried to configure the POP alias account using combinations of ‘pop.mail.yahoo.com’, ‘pop.mail.yahoo.co.uk’, ‘apple.pop.mail.yahoo.co.uk’ and ‘apple.pop.mail.yahoo.com’, for the incoming host, and ‘smtp.o2.co.uk’, ‘smtp.mail.yahoo.com’, ‘smtp.mail.yahoo.co.uk’, ‘apple.smtp.mail.yahoo.com’ and ‘apple.smtp.mail.yahoo.co.uk’ for the outgoing mail server. None of these have worked.
    I’ve also tried setting it up using IMAP instead of POP without success. I tried configuring it using combinations of ‘imap.mail.yahoo.com’, ‘apple.imap.mail.yahoo.com’, ‘imap.mail.yahoo.co.uk’ and ‘apple.imap.mail.yahoo.co.uk’ for the incoming mail server and ‘smtp.o2.co.uk’, ‘smtp.mail.yahoo.com’, ‘smtp.mail.yahoo.co.uk’, ‘apple.smtp.mail.yahoo.com’ and ‘apple.smtp.mail.yahoo.co.uk’ for the outgoing mail server.
    Yahoo say that if I can't send Yahoo! Mail from my mail program, I may be accessing the Internet through an ISP that is blocking the SMTP port, and that if this is the case, I should try setting the SMTP port number to 587 when sending email via Yahoo!'s SMTP server. I don't think that this is the problem, but I tried it just to make sure - without success.
    I’ve also heard that the problem might have something to do with the SPF settings of my alias domain provider. I’m not too sure exactly what SPF settings are, or how to change them, but from what I can gather it seems unlikely that this is the problem given that I was able to send mail from my alias account on my old iPhone3.
    Any help much appreciated: how can I get my alias account to send emails in iPhone5 mail?
    Many thanks,
    Patrick

    A new development: I've tried sending emails from the alias several times over the past 24 hours, but in general I've deleted them if they haven't sent within about half an hour.
    However, one of the messages I left sitting in the outbox did send successfully in the end, but this took about an hour.
    So: perhaps my problem is not in fact that I am completely unable to send mail from my alias, but that I can only do so intermittently and extremely slowly, and by ignoring the "cannot send" message.
    Any help appreciated.

  • How to enable group email accounts

    Hi all,
    I have spent a while fiddling with (and breaking) my OSX Lion 10.7.4 Server install trying to get group emails working. I would just like to share how I did it.
    Follow the below how to.
    #!/bin/bash
    # Group EMail Enabler v0.2
    # Jeff Johnson <[email protected]>
    # Tested with OS X Server 10.6 and 10.7
    # Should also work with 10.5
    # This script allows you to manage email groups using Work Group Manager.
    # If you create an executive group in WGM, you then have a executive@ email address
    # This is automatically maintained as you adjust the members
    # The script searches your LDAP groups for the word 'mail' in the comment field
    # You must add mail to the comment field for any group which should have an email address.
    # The email address for that group will be the shortname of that group.
    # If you miss this step (add 'mail' to the comment field), this script does nothing.
    # Known issues
    # 1. Only supports groups in LDAP, users can be in LDAP or Local
    # 2. Does not support other groups within your email group (no nested groups)
    # 3. Almost no error checking, so best to run it manually a few times to check results.
    # Installation Instructions
    # 1. Save this file as
    #       /usr/sbin/group_email.sh
    # 2. Then adjust permissions
    #       sudo chmod +x /usr/sbin/group_email.sh
    # 3. Modifiy alias_maps in /etc/postfix/main.cf
    #    You need to add this line to what you already have
    #        hash:/etc/postfix/group_aliases
    #     Example, you have:
    #        alias_maps = hash:/etc/aliases
    #     Change to:
    #        alias_maps = hash:/etc/aliases, hash:/etc/postfix/group_aliases
    # 4. To run automatically every 5 minutes, I prefer a simple addition to /etc/crontab
    #      you may need to create /etc/crontab if it doesn't exist
    #      Add the following to /etc/crontab
    #            */5 * * * * root /usr/sbin/group_email.sh >> /dev/null 2>&1
    # If you followed these instructions, within 5 minutes you will see an alias file at
    #  /etc/postfix/groupaliases
    # you can inspect the file to confirm the results.
    cd /etc/postfix
    # clear current aliases
    echo "" > group_aliases.tmp
    # Get list of groups with 'mail' in the comment field
    gr=`dscl /LDAPv3/127.0.0.1 -list /Groups Comment | grep mail | awk '{print $1}'`
    for group in $gr
       do
          echo $group: `dscl /LDAPv3/127.0.0.1 -read /Groups/$group dsAttrTypeNative:memberUid | cut -d : -f 3 | grep -v "No such key"` >> group_aliases.tmp
       done
    cmp -s group_aliases.tmp group_aliases > /dev/null
       if [ $? -eq 1 ]; then
          echo different
          cp group_aliases.tmp group_aliases
          /usr/sbin/postalias /etc/postfix/group_aliases
          /usr/bin/newaliases
       else
          echo same
       fi
    exit
    The only additional thing I had to do with Lion Server 10.7.4 was add hash:/etc/postfix/group_aliases to the alias_maps AND alias_database in /etc/postfix/main.cf then run "newaliases" and "postfix reload"
    Hopefully this helps the next person to get it all running quicker than I did
    Cheers
    Ryan

    Hi Ryan, yeah 10.7.4 Lion Server - mail is swtiched on although we haven'y migrated to it yet (i do have the accounts setup though)
    Script:
    #!/bin/bash
    # Group EMail Enabler v0.2
    # Jeff Johnson <[email protected]>
    # Tested with OS X Server 10.6 and 10.7
    # Should also work with 10.5
    # This script allows you to manage email groups using Work Group Manager.
    # If you create an executive group in WGM, you then have a executive@ email address
    # This is automatically maintained as you adjust the members
    # The script searches your LDAP groups for the word 'mail' in the comment field
    # You must add mail to the comment field for any group which should have an email address.
    # The email address for that group will be the shortname of that group.
    # If you miss this step (add 'mail' to the comment field), this script does nothing.
    # Known issues
    # 1. Only supports groups in LDAP, users can be in LDAP or Local
    # 2. Does not support other groups within your email group (no nested groups)
    # 3. Almost no error checking, so best to run it manually a few times to check results.
    # Installation Instructions
    # 1. Save this file as
    #       /usr/sbin/group_email.sh
    # 2. Then adjust permissions
    #       sudo chmod +x /usr/sbin/group_email.sh
    # 3. Modifiy alias_maps in /etc/postfix/main.cf
    #    You need to add this line to what you already have
    #        hash:/etc/postfix/group_aliases
    #     Example, you have:
    #        alias_maps = hash:/etc/aliases
    #     Change to:
    #        alias_maps = hash:/etc/aliases, hash:/etc/postfix/group_aliases
    # 4. To run automatically every 5 minutes, I prefer a simple addition to /etc/crontab
    #      you may need to create /etc/crontab if it doesn't exist
    #      Add the following to /etc/crontab
    #                 */5 * * * * root /usr/sbin/group_email.sh >> /dev/null 2>&1
    # If you followed these instructions, within 5 minutes you will see an alias file at
    #  /etc/postfix/groupaliases
    # you can inspect the file to confirm the results.
    cd /etc/postfix
    # clear current aliases
    echo "" > group_aliases.tmp
    # Get list of groups with 'mail' in the comment field
    gr=`dscl /LDAPv3/127.0.0.1 -list /Groups Comment | grep mail | awk '{print $1}'`
    for group in $gr
       do
          echo $group: `dscl /LDAPv3/127.0.0.1 -read /Groups/$group dsAttrTypeNative:memberUid | cut -d : -f 3 | grep -v "No such key"` >> group_aliases.tmp
       done
    cmp -s group_aliases.tmp group_aliases > /dev/null
       if [ $? -eq 1 ]; then
          echo different
          cp group_aliases.tmp group_aliases
          /usr/sbin/postalias /etc/postfix/group_aliases
          /usr/bin/newaliases
       else
          echo same
       fi
    exit
    I've gone through it a few times and can't see any differences to the one you posted so am at a loss as to why its not working..
    Thanks
    Phil

  • How do i remove email addresses that have been imported from my email account?

    Im not sure how i did it but somehow i have a ton of email addresses in my contacts and I want to remove them....Is there a way to do this without have to remove them one at a time.....I hardly send anyone emails from my contact list and would love to get my list back to just people with phone numbers....
    Any suggestions would be greatly appreciated!!!

    Select each photo in the smart collection with the missing question mark icon. Use Cmd+Click or Shift+Click on the first and last if they are all in a consecutive block. Then click top left on the Catalog tab and choose All Photographs. Confirm from the information strip (above the filmstrip) that you are in All Photographs and the number of photos you have selected and then use the menu:
    Photo >> Remove Photos From Catalog

  • How to Validate Multiple email address in spry?

    How to validate multiple email address in spry framework?
    Spry validate text field can validate one email address only,
    if I the text field is for multiple emails, how can I validate
    it?

    Hello Jackson,
    The Spry Textfield was designed to work with the normal work
    flows that people currently use in most of the forms on the web. We
    tried to prevent any email injection method in the forms therefore
    the validation was designed to stop any multiple email insertion.
    In case you want to insert multiple emails you'll have to
    disable the default email validation and create your own validation
    function, more flexible. You can see a
    sample
    we did for the custom validation trying to validate a password
    strength and confirm the password.
    Cristian

  • How do I get email to display only the last 50 or 100 emails ?

    How do I get email to display only my last 50 or 100 emails?

    I think I figured it out. I downloaded all the email in my wife's hotmail account(500) to the iphone and then deleted 350 of the emails on the iphone. then I set the iphone to look for the 200 most recent messages. When I did this the iphone updates all the new emails and the old ones that I deleted on the iphone are still in hotmail.
    Mike

  • How can i send email to team when opportunity is assigned

    Hi,
    I need to send email to opporunity team when team is assigned.
    Here is what I did.
    created new workflow on oporuntity team record type. when new record saved.
    problem is in Action send email option
    'TO' field have only 2 options
    specific user
    specific email
    I cannot user specific user as I have to select the specific user from the list.
    I think I have to user specific email, but when I see the columns avaiable I have first name, last name and team role.
    How can I get email address when I choose lastname.
    Whcih function to user and how.
    I saw Joinfieldvalue fuinciton , anyone has dea how can I add this.
    THanks
    Pallavi

    You must still be on R15. Once you get upgraded to R16 you will have additional options in the automated email task. The drop down list will include 'Relative User on Record'. Once you choose it you will be given the option to send the email to the various opty team members. You'll have to create multiple tasks as each will send only one email.
    Best of luck.
    Edited by: Colin Frissell on Jun 8, 2009 2:02 PM

  • HOw do i connect my hotmail to my blackberry, I had it on before and it recently stopped. I can't remember how I did it the first time. Thank you Pamela Duca

    HOw do i connect my hotmail to my blackberry, I had it on before and it recently stopped. I can't remember how I did it the first time.
    Thank you
    Pamela Duca

    Hi!
    If it was working before and you are on the same BB, I suggest doing these steps:
    Full reboot:
    With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation.
    If that does not restore the delivery of your emails, then re-push your service books:
    http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=KB02830&slic...
    Lastly, since it's HotMail, it may be that you have not done the recently required re-validation:
    http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB13137
    Hopefully one of those will work!
    Cheers!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Urgent help needed... Survey works - how do I get email to display correctly?

    I have a survey and the results are emailed to me, how do I format email to hard return answers in correct order?  Getting ready to send out to our subscribers and I need help fast, thanks. Including links of survey and email direction page.
    http://www.thedogpress.com/SURVEY/7-Puppy-Evaluation-2011a.asp and mail code http://www.thedogpress.com/SURVEY/7-Puppy-Evaluation.asp

    I think I figured it out. I downloaded all the email in my wife's hotmail account(500) to the iphone and then deleted 350 of the emails on the iphone. then I set the iphone to look for the 200 most recent messages. When I did this the iphone updates all the new emails and the old ones that I deleted on the iphone are still in hotmail.
    Mike

  • How do I send email

    How can I send email i can receive them but not send them it says
    'cannot send email "smtp :   Mtp.live.com" is incorrect'
    Please help

    You will need to enter a password for you outgoing mail server, just like you did for your incoming mail server.
    Go back in your mail account in settings and see if you can enter the password, same one you use for the incoming mail server.

  • How can I change email received by others from me via my IMac and MacBookPro being received as APPLE?ring as just Apple

    How can I change emails received by others from me on my IMac and MacBookPro appearing on their computers as 'APPLE' and not my name?

    Thanks - I did not realize that Homesharing can be specifically set to a photo destination like that!
    So, it would appear that I can either point it to iPhoto (and folders/ events within that) OR the default Pictures folder and subfolders of that OR any other specific folder (and subfolders of that) of my choice.  However, I cannot select BOTH the default Pictures folder (and some subfolder of that) AND a folder in iPhoto AND/ OR an event/ folder in iPhoto.  Is that a correct assumption?
    If so, the only way I see getting homesharing to get both set of pictures is to get all my picture folders (internal and external drive based) into iPhoto (without physically duplicating them) - and then pointing Homesharing to iPhoto, right?
    I think you have solved my issue - but I just want to be sure of that.
    Thanks a ton!

  • How do I stop emails telling me how to reset my ID

    I am getting numerous emails a day telling me how to reset my apple ID, how do I stop the emails.

    For which forum thread did the email come for? The Topic header is usually included in the email. Just log in to the ASF, where you are now, go to thast thread and select this option.
    Then never come back here and never post a question and never post a reply to a thread.
    You can also do that for the complete forum you are getting them from. Like the MBP or Mac Air forums.

  • How long did your contract setup took?

    Not asking about the app store review (plenty of other threads for that) but how long did your non free contract setup took? I emailed them and they took me it could be up to 4 weeks!! What the...

    Mine took two or three weeks. My first app was help up almost a week for the contract to finish setup.

  • How can I send email using two different email address that both link back to my one exchange account on my Ipad mini

    How can I send email using two different email address that both link back to my one exchange account on my Ipad mini? 
    On my PC I simply have a master return email address and use a POP for the secondary address.  Both are through the one exchange account without a problem.  I need to be able to do the same on my Ipad.

    Ah, I should have made that clear.  My domain didn't come from google.  It was purchased at and is hosted at dreamhost, but I haven't used their email servers in years - I just route everything through gmail.  I actually have a bunch of domains (with websites).
    Gmail has an option that lets someone with custom domains send (and receive) email through gmail using the custom domain once Google confirms proper ownership of the domain (to prevent spammers and such).  Gmail has a setting for "send email as" which allows gmail to be sent using a custom domain as the sender.  I'm pretty sure Apple's old mobileme had this feature too, but I didn't use it.

Maybe you are looking for

  • How can I remove GRUB2 from my iMac?

    Hello Internet! I have a 21.5" iMac (intel based, version 10.7.5), and I have recently tried to install Ubuntu on it. Ubuntu installed successfully, and with it came GRUB2. Now, when Ubuntu started doing all sorts of wierd crap i decided i might as w

  • Error while executing Form URL

    Dear Experts, Install and configure weblogic server 10.3.3.4.0 and then Oracle Portal, Forms, Report, Discoverer are successfully. But I have problem when executing Form URL such as HTTP://localhost:8090/forms/frmservlet. Failure of server APACHE bri

  • 'Log in to System' option redirects to Development system in Change Request

    Hi all, We're testing ChaRM configuration. The issue is with the Change Request message. When set to 'In development', it doesn't show 'Log in to system' option. While when the status is ''To be tested', it shows the 'log in to system' option, but lo

  • Flash 9 won't download on Mac

    I'm running OS 10.3.9 and all of a sudden flash wont work for firefox or safari when I'm trying to watch hulu or youtube.When I try to re-install Flash 9, all it does is downloads the .dmg file to my desktop and then NADA. nothing works.

  • IPad as a photo/video storage device?

    I'd love to replace my netbook with an iPad for travel. I use the netbook for internet access and for storage of data from my camera. I know I can transfer images to an iPad via the camera connection kit. However, my camera also takes video in a wack