Sending an email to user on same domain but hosted on another system

I need to be able to send emails to users of the same domain, but where their mailbox is hosted by a different (non-Exchange) system.
I've attempted it but got the usual "The email address you entered couldn't be found. Please check the recipient's email address and try to resend the message. If the problem
continues, please contact your helpdesk."
Is there something I can set up in ECP?
Roger

Hi ,
Please have a look in to the below mentioned options.
option 1 : 
1.Please add the recipient email address domain suffix as the authoritative domain in the accepted domain list in the exchange .
2.In case if you have the recipient mail email address domain suffix is already added on the accepted domain list as an authoritative domain . Then the next step is to have the mail enabled contact for the recipient mailbox which is hosted on the non-exchange
system.Otherwise you will be getting an NDR which says that the recipient address is not found on the exchange system.Because recipient email address domain suffix is added as authoritative.That means our exchange server is responsible for the sending and
receiving emails for that particular domain.
3.Then you need to have the send connector to send emails to the address space of the mailbox which is located on the non-exchange system.
Option 2 :
1.Second option would be to add the recipient domain suffix as an internal relay on the exchange server's accepted domain list .On such case you don't need to have the mail enabled contact for the mailbox which is hosted on the non exchange system.
2.Then you need to have the send connector to send emails to the address space of the mailbox which is located on the non-exchange system.
Note : In case you have any of the above option implemented but still you are facing the issues means then we need to suspect the auto complete cache in the outlook .So please clear the particular email address from the autocomplete in the outlook and check
the results.Same time while composing the new emails please try to select the email address from the GAL instead of choosing it from OAB. 
Please reply me if anything is unclear.
Thanks & Regards S.Nithyanandham

Similar Messages

  • [Forum FAQ] How do I send an email to users when the data in the report have been changed in Reporting Services?

    Introduction
    There is a scenario that the data in the report changes infrequently, so the users want to be informed and get the most updated data once the data changes. By default, report server always run the report with the most recent data. Is there a way that we
    can subscribe the report, so that we can send an email to users when the data in the report has been changed?
    Solution
    To achieve this requirement, we can create a subscription for the report, then create a trigger in the table which including the report data. When this table has data insert, update or delete, it will be triggered and execute the subscription to send email
    to users.
    In the Report Manager, create a subscription for the report and make it only execute one time.
    When we create a subscription, a corresponding SQL Agent job will be created. Then we can use the query below to find out the job based on ScheduleId:
    -- List all SSRS subscriptions
    USE [ReportServer];  -- You may change the database name.
    GO 
    SELECT USR.UserName AS SubscriptionOwner
          ,SUB.ModifiedDate
          ,SUB.[Description]
          ,SUB.EventType
          ,SUB.DeliveryExtension
          ,SUB.LastStatus
          ,SUB.LastRunTime
          ,SCH.NextRunTime
          ,SCH.Name AS ScheduleName   
              ,RS.ScheduleId
          ,CAT.[Path] AS ReportPath
          ,CAT.[Description] AS ReportDescription
    FROM dbo.Subscriptions AS SUB
         INNER JOIN dbo.Users AS USR
             ON SUB.OwnerID = USR.UserID
         INNER JOIN dbo.[Catalog] AS CAT
             ON SUB.Report_OID = CAT.ItemID
         INNER JOIN dbo.ReportSchedule AS RS
             ON SUB.Report_OID = RS.ReportID
                AND SUB.SubscriptionID = RS.SubscriptionID
         INNER JOIN dbo.Schedule AS SCH
             ON RS.ScheduleID = SCH.ScheduleID
    ORDER BY USR.UserName
             ,SUB.ModifiedDate ;
    Create a trigger in the table which including the report data.
    CREATE TRIGGER reminder
    ON test.dbo.users
    AFTER INSERT, UPDATE, DELETE
    AS
    exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    Please note that the command ‘exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'’ is coming from the job properties. We can go to SQL Server Agent Jobs, right-click the corresponding job to open
    the Steps, copy the step command, and then paste it to the query.
    Then when the user table has data insert, update or delete, the trigger will be triggered and execute the subscription to send email to users.
    References:
    Subscriptions and Delivery (Reporting Services)
    Internal Working of SSRS Subscriptions
    SQL Server Agent
    Applies to:
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • Need Help in sending Private Email when user clicks Oracle Password Reset

    How to send an email to user marked as PRIVATE and Confidential when they hit the Oracle Password Reset Link.

    user11986391 wrote:
    How to send an email to user marked as PRIVATE and Confidential when they hit the Oracle Password Reset Link.What do you mean by private and confidential?
    Reset Password Functionality FAQ [ID 399766.1]
    How to Modify The Password Reset Statement for the UMXUPWD.wft Workflow [ID 420236.1]
    How to Change the Text of Instructions in the "Reset Password" Screen? [ID 762798.1]
    How to open customized page when click on "Forgot Password" URL ? [ID 556454.1]
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Password+AND+Forgot&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Need to generate a script which will sends an email to users reg cube statu

    Hi All,
    Once the cube gets loaded successfully an email has to sent out automatically thru maxl to users saying that cubes has loaded as off today's date. Could you please help me is their any script available which will automatically sends an email to users that would be helpfull for me.
    Thanks in Advance,
    Raj.

    Raj,
    Here's a good start:
    http://www.network54.com/Forum/58296/thread/1196781565/Maxl+Scripts+to+send+out+email+notifications
    http://www.network54.com/Forum/58296/thread/1106766086/Essbase+Script+Box+-TellingUser+when+the+previous+script+was+run
    http://www.network54.com/Forum/58296/thread/1167815846/Email+notification+through+MaxL
    http://www.network54.com/Forum/58296/thread/1193233965/Automate+the+Email+Notification
    Regards,
    Cameron Lackpour

  • Sending an email to users from abap program

    Hi experts ,
    How to send an email to users from abap program ...
    i need full coding please..so that i can copy and paste it in my program.
    Thank you in advance.
    Rajasekhar.P

    Hi Venkat
    check the below simple code to convert spool to HTML and email it
    data: list type table of  abaplist with header line.
    data: htmllines type table of w3html with header line.
    data: maildata   like sodocchgi1.
    data: mailtxt    like solisti1 occurs 10 with header line.
    data: mailrec    like somlrec90 occurs 0  with header line.
    start-of-selection.
    Produce a list
      do 100 times.
        write:/ sy-index, at 30 sy-index, at 50 sy-index.
      enddo.
    Save the list
      call function 'SAVE_LIST'
           tables
                listobject         = list
           exceptions
                list_index_invalid = 1
                others             = 2.
    Convert the list
      call function 'WWW_LIST_TO_HTML'
           tables
                html = htmllines.
    Send mail
      maildata-obj_name = 'TEST'.
      maildata-obj_descr = 'Test Subject'.
      loop at htmllines.
        mailtxt = htmllines.
        append mailtxt.
      endloop.
      mailrec-receiver = '[email protected]'.
      mailrec-rec_type  = 'U'.
      append mailrec.
      call function 'SO_NEW_DOCUMENT_SEND_API1'
           exporting
                document_data              = maildata
                document_type              = 'HTM'
                put_in_outbox              = 'X'
           tables
                object_header              = mailtxt
                object_content             = mailtxt
                receivers                  = mailrec
           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.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.

  • New iPad won't send out emails on VerizonLTE or 3G network, but will do so on wi-fi - help?

    Been through the wringer on this one. Verizon or local cable  co. have not helped. New iPad will not send out emails while in LTE or 3g, but will do so in wi-fi. Have checked settings, restarted, reset settings, etc. Any ideas would be appreciated. BTW, I have an iPhone with Verizon and it sends out emails with exactly the same settings as the iPad while on 3g. This has been nuts.

    Hi all:
    Just found the answer to this thanks to Chris CA. In outgoing email settings, for some reason, the new iPad must have username and password entered even though it says optional. Once I entered that data, emails sent right out! The Verizon techs or my cable co. techs never suggested doing so after many hours of troubleshooting. This forum always has the real "experts". Thanks again, Chris.

  • ICal Server Email Notifications to Users On Same Domain

    I am using iCal Server in an environment where a all of the iCal Server users are internal to the organization with emails that end with the same internal domain name.  Is it possible for iCal to send email notifications to those people invited internally whenever an event is scheduled?  Not all of the users are using iCal as their calDAV client so it would be perfect if an email notification went out to the invitees when someone schedules an event.  Email notification works just fine if I invite someone to an event with an external email address.
    Thank you.

    iCal Server sends invitations to internal users too if you remove the email addresses of your internal users under "Info" in Workgroup Manager.
    So the Open Directory does not have an entry for the users with your internal domain, which makes iCal Server see the user as an external one.

  • Can't send email from internal server, same domain name as external.

    We have a domain "example.com", hosted externally, for email and a website.  We are thinking of hosting email 'inhouse' and have setup a dedicated subdomain on a 'fixed' IP, "mini.example.com" for AFP services mainly. mini.example.com provides DNS internally, its primary zone is also example.com. All access to the external web goes thru' a modem/router that the server is connected to. We have to set an A record for www access to our website.
    In our testing to migrate email, the internal setup works fine, until the switch over.  Now we can receive mail to the mini server, but can't send any out.
    We instructed our webhost provider to set the CNAME mail.example.com to point to mini.example.com and created a cPanel MX extry mail.example.com, 10 priority.  Previously, the external host had CNAME as mail.example.com to example.com and MX as example.com, 10 priority.
    Since the implementation of the CNAME change, we can't send emails out and they get stuck at the outbox waiting. Client Mail app, says to check for port and SSL and account settings.
    Any idea where we went wrong here and what we can do to get emails out? We could go to each computer and point-off the DNS to office IP, but we rather not.
    Thanks!

    Thank you Camelot and MrHoffman for your replies.
    I got in this am to find Mail.app could actually send out emails and I'm stratching my head wondering what happened yesterday.
    SMTP server addresss was manually set to mail.example.com for all accounts. In trying to get things to work, the mail setup was redone again by "Accounts", in Systems Preferences, when Login is clicked on, and mail was automatically given a SMTP as mini.example.com instead of mail.example.com.  I'm guessing that that could be where the initial 'inside' problems were, given that it had a 0 answer to the MX query. Or then again I wasn't patient enough.
    Just for completeness, and if there's something to learn from here, these are the dig results for example.com as seen from within the office network.
    ============================
    ~ dig mx mini.example.com :
    ; <<>> DiG 9.6-ESV-R4-P3 <<>> mx mini.example.com
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 1791
    ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;mini.example.com. IN MX
    ;; AUTHORITY SECTION:
    example.com.                    10800          IN          SOA          mini.example.com. dnsadmin.example.com.example.com. 2011120603 86400 3600 604800 345600
    ============================
    ~ dig mx mail.example.com :
    ; <<>> DiG 9.6-ESV-R4-P3 <<>> mx mail.example.com
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 36128
    ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;mail.example.com.                    IN          MX
    ;; ANSWER SECTION:
    mail.example.com.          10800          IN          CNAME          mini.example.com.
    ============================
    ~ dig mail.example.com :
    ; <<>> DiG 9.6-ESV-R4-P3 <<>> mail.example.com
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 35095
    ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 1, ADDITIONAL: 0
    ;; QUESTION SECTION:
    ;mail.example.com.                    IN          A
    ;; ANSWER SECTION:
    mail.example.com.          10800          IN          CNAME          mini.example.com.
    mini.example.com.          10800          IN          A          10.0.0.34
    ;; AUTHORITY SECTION:
    example.com.                    10800          IN          NS          mini.example.com.
    ============================
    ~ dig mx example.com :
    ; <<>> DiG 9.6-ESV-R4-P3 <<>> mx example.com
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 47951
    ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1
    ;; QUESTION SECTION:
    ;example.com.                              IN          MX
    ;; ANSWER SECTION:
    example.com.                    10800          IN          MX          10 mail.example.com.
    ;; AUTHORITY SECTION:
    example.com.                    10800          IN          NS          mini.example.com.
    ;; ADDITIONAL SECTION:
    mini.example.com.          10800          IN          A          10.0.0.34

  • How to use Forms10g to send mass email to users via MS Outlook?

    Does anyone has tried to write a Forms that retrieve emails from a database schema and then send mass emails to these users viad Microsoft Outlook? If yes, would you like to share your valuable experience with us?

    i would be easier to depend on database packages for achieving this result, whether you create procedures or database triggers, you can still invoke these construct form your form. If you database is a 10g database, it is easier to handle mass email since there is an already built-in package for this.
    below is an example
    Using UTL_MAIL (only for Oracle 10g)
    make sure that the UTL_MAIL package is installed
    SQL>start utlmail.sql
    SQL>start prvtmail.plb
    both can be found under $ORACLE_HOME/rdbms/admin
    utl_mail.send(
    sender IN VARCHAR2 CHARACTER SET ANY_CS,
    recipients IN VARCHAR2 CHARACTER SET ANY_CS,
    cc IN VARCHAR2 CHARACTER SET ANY_CS DEFAULT NULL,
    bcc IN VARCHAR2 CHARACTER SET ANY_CS DEFAULT NULL,
    subject IN VARCHAR2 CHARACTER SET ANY_CS DEFAULT NULL,
    message IN VARCHAR2 CHARACTER SET ANY_CS DEFAULT NULL,
    mime_type IN VARCHAR2 CHARACTER SET ANY_CS DEFAULT 'text/plain;
    charset=us-ascii',
    priority IN PLS_INTEGER DEFAULT 3);
    Example
    declare
    vSend VARCHAR2(30) := '[email protected]';
    vSubj VARCHAR2(50) := '10g new mail package';
    vMesg VARCHAR2(4000);
    vMType VARCHAR2(30) := 'text/plain; charset=us-ascii';
    BEGIN
    vmesg:= 'Hello mail 10g worked';
    utl_mail.send(vSend, '[email protected]', NULL, NULL, vSubj,
    vMesg, vMType, NULL);
    END ;
    Note: for this to work, you need to set the SMTP Server
    SQL>ALTER SYSTEM SET smtp_out_server ='smtp.realsoft-me.com' scope=spfile ; -- added Aug 15,2005
    -- Use your own smtp server name
    Re-bounce the instance for the changes to take place
    If you database is oracle 9i, then you have to depend on packages like UTL_SMTP , UTL_TCP. i have another example that uses the sames sample code that Mark refered to and you can find such example at my website
    http://www.e-ammar.com/Oracle_TIPS/oramail.htm
    The code my seem a bit complex, but you many not need to use it all, additionally, it makes a difference if you are going to use attachments or not.
    hope this helps
    Ammar Sajdi
    www.e-ammar.com
    www.palco-me.com
    www.realsoft-me.com
    Amman - Jordan Oracle certified partner
    Partner, CEO and consultant

  • Send Workflow email to User SAP Inbox with a Popup and cproject link

    Hi,
    I am working SAP portfolio and project management workflow.
    Requirement: Trigger workflow when Portfolio Execution Decision Point status changes,
    We have to send two email notifications as part of the requirement;
    First notification should go to user’s (Only one user) SAP Inbox, Containing two links
    Popup link (It will contain list of question which the user has to confirm) if he
    confirms we have to send second  email notification. (Pop-up layout is attached)
    Link for the user to navigate to SAP PPM cProject to upload the documents. (NWBC)
    The second notification should go to Outlook of the users (via group email) with Link for the user to navigate to SAP PPM cProject.
    We can trigger the workflow using event DECISION_POINT_STATUS_CHG in Class CL_RPM_DECISION. My question is how should design the pop-up and incorporate the Pop-up and cproject link in first notification email sent to user SAP Inbox.
    Please let me know if you need more details.
    Thanks & Regards,
    Amit Singh

    We use transaction NWBC to login to netweaver business client. Then from there we navigate to Project management view and double click to select the project. It opens project element --> Collaborations tab. There we select the folder link. (screenshot attached)
    Regarding addition of multiline container element (Table) let's say 'A'; I create multiline container element A in Workflow element list, Populated  element A using a utility class/method assigned to a background task.
    Then, I created a user decision task, inside the task container another multiline container element 'B' with same type and I did binding b/w workflow container element 'A' and task container element 'B'.
    Now, I am passing &B& in the decision task description. If I execute the workflow, The user decision task description is blank.
    Secondly, I did not get any pop-up asking how to display it (all lines with line break).
    PS: My internal table also has only one field.
    Am I doing something wrong here?

  • Mail server automatically cc all email for user to other acct but group...

    Back on April 2007, David_X answered this question:
    How to have the mail server automatically cc all e-mail for user to other accounts, (gmail, hotmail, etc). Here is the old post that explains that:
    http://discussions.apple.com/thread.jspa?messageID=4357149&#4357149
    What I did not catch at the time was if you setup a Group, one of three ways, the cc step no longer works. There is a fourth way but it is not practical. Creating local groups on individual Macs.
    *Group method 1 per David_X:*
    Use edited group files on the server.
    The following sends to members of groups but does not show all recipients in the received message...
    In /etc/postfix/aliases, add...
    groupname: :include:/path/to/groupname.txt
    In a file called groupname.txt (using plaintext editor)...
    [email protected]
    [email protected]
    Reload aliases...
    sudo newaliases
    sudo postalias aliases
    sudo postfix reload
    Mail sent to [email protected] gets passed to amavisd once, before then being relayed out for each individual recipient.
    *Group method 2 per David_X:*
    Make a user, e.g., "accounts"
    In mail settings, select 'Forward' option and enter the group members' email addresses, comma separated e.g.,
    [email protected],[email protected]
    This gets a bit 'long' for lots of members.
    The email then gets sent to each of the people in this list.
    *Group method 3 that I just discovered:*
    Create a group in Workgroup Manager.
    Drag the users you want in it.
    Save.
    Test sending to that group.
    Best part, the group name shows up in Address Book if you have LDAP setup.
    So I have setup all three. If I send an email to any type of group, they work.
    The problem:
    If one of those members in the group also has a BCC setup to Gmail or any other outside email, they never get the e-mail copied out to the external account.
    Example:
    I send an email to [email protected]. He gets the email there and also a copy at his Gmail account.
    If I send an email to the Sales group that jsmith belongs to, he gets the email there but nothing at the Gmail account.
    It looks like the mail server processes the "aliases" file and skips the "Recipient_bcc" file that handles the forwards.
    Is there a way to have my cake and eat it too? David_X your thoughts also?
    Thanks everyone!

    Bump.
    Short version. Sales guy has a Gmail account he wants his e-mail copied to also.
    Send e-mail directly to his Xserve account, he gets it there and it gets sent on to his Gmail account.
    Send an e-mail to the sales Group that he is a member of, he gets it there but it never gets sent out to the Gmail account.
    Ideas?

  • When I send an email in Thunderbird it looks fine, but when the recipient tries to print it, the font is unreadablly small. Is there a setting I need to fix?

    I have Thunderbird version 24.3.0 downloaded to my Windows 7 computer.
    When I send an email in Thunderbird it looks fine and when the recipient receives it, it looks fine on the screen, but when she tries to print it, the font is unreadably small. This happens on every email I send her, but not other people's emails she receives. It has happened on some of the emails I receive back from her that contain the information I sent her.
    Is there a setting I need to fix or something I can do on my end to address this so this doesn't happen. She is receiving email through AOL online. I believe she is viewing it through either IE or Chrome.

    I recently tried sending myself an email through Thunderbird to another email account to see if that was the case, but the email came in with a font so tiny that it was unreadable. I had chosen a font type and size (arial 10) and just coming into my outlook inbox was virtually unreadable.
    And referring to the person I work with, she doesn't have problems getting anyone else's emails, just ones I send from Thunderbird.

  • Two CAS Servers on the same domain but different AD Sites

    I have a customer that has 1 EXCH MB server & 1 EXCH server running the Hub Transport and Client Access roles. These two servers are in the same domain and reside in AD site A. Now he wants AD Site B (also in the same domain) to have 1 EXCH MB server
    & 1 EXCH server running the HUB/CAS role. The problem is the CAS role in site A is the only one that is public interfacing. The CAS server in site B has not certificates at all, and I want all the mail to re-route to the CAS server in Site A. Does anyone
    know how I can do that???

    The CAS in the internet facing site will proxy to the CAS in the non-internet facing site. And you do have a cert on that CAS in Site B. The default built-in one. However, if you have clients in Site B, you should replace that built-in cert with one that
    is trusted by clients such as Outlook and Lync etc...It doesnt have to be a 3rd party cert, it could be on that is trusted internally.
    http://technet.microsoft.com/en-us/library/bb310763(v=exchg.141).aspx
    Understanding Proxying and Redirection
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • I have bought an ipad 3, i cant set up my hotmail account, it verifies but i cant send any emails, it does the same on my friends ipad 3, cant find any fixes online hope someone can help

    as stated in the title, i cant get my hotmail account to work on any ipad, its the same email address i have used for logging into the app store so i know the email is fine, any help would be great

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Since you are new to the iPad ....
    You can download a complete iPad User Guide here: http://manuals.info.apple.com/en/ipad_user_guide.pdf
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    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.
    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

  • Multiple users using same files, but with different libraries

    My wife and I both have our own iPhone 3Gs. We also have separate user accounts on our MacBook Pro. We would like to share the music/video files that we've got stored on a network drive, but we don't want to have the same library file. We both have different tastes in music, so I'd prefer if our song ratings were separate, as well as the rest of the library info (namely "last played date"). Is there a way that we can keep separate library files, but also be able to have new song purchases on one library automatically added to the other?

    FryeX wrote:
    I have this in my controller:
    -(IBAction) setSize:(id)sender
    And it would be enough to get to the title of the button
    The sender param should be a pointer to the originating button, and you can use the button's tag property to id it. E.g.:
    -(IBAction) setSize:(id)sender {
    UIButton *button = sender;
    NSString *title = button.currentTitle;
    int tag = button.tag;
    NSLog(@"sender=%@, title=%@, tag=%d", sender, title, tag);
    - Ray

Maybe you are looking for