Can I have more than 1 susbcriber with the same email address?

I have developed a BC secure zone in Muse as a members only area. This works fine. I have subscribed all the members and all is OK except that I find if I try to subscribe 2 members with the same email address (e.g. a married couple with a shared email address), the first subscription is overwritten by the second. Is there a solution or do I just live with it?

Hi Neil,
This is the default behavior of the system because email is the unique identifier. You can't have more than 1 subscriber with the same email address.
Regards,
Aish

Similar Messages

  • HT4098 How do i delete a account if i have set up two with the same email address?

    How do I delete a smule account?

    The iphone is not a storage/backup device.
    You need to copy everything from the old computer, or backup copy of the old computer, to the new one.

  • HT204053 can i have multiple iCloud accounts with the same Apple id

    Can i have multiple iCloud accounts with the same Apple id

    Welcome to the Apple Community.
    No, your ID is essentially your account. You can have email aliases and you can have multiple accounts, but I don't think that's what you are asking.

  • I created my Apple ID in Ireland, but would now like to switch to a German Apple ID, keeping the same email address. How do I delete my old Irish Apple ID, so I can create a new German one with the same email?

    I created my Apple ID in Ireland, but would now like to switch to a German Apple ID, keeping the same email address. How do I delete my old Irish Apple ID, so I can create a new German one with the same email?

    Welcome to the Apple Community.
    Click on your account name in the top right corner of the iTunes store in the iTunes application on your computer, enter your password and click the "view account" button. Navigate to the Apple ID summary where you have the option to "change country or region".
    In order to change your location, you will need a credit card registered to an address in the location you are trying to change to.
    You cannot change your location if you have credit on your account, if you are unable to spend your credit and leave a balance of zero, contact Apple, which you can do through iTunes Store Support.

  • Can two ipods with the same email address face time independantly?

    Can two ipods with the same email address face time independantly?

    Hey Bumblebee, To each other, no-- would be like trying to call yourself on the same phone. To different persons on other devices??? Not sure you'll have to try, I'm guessing if both are online you may well dial up on both, (once had the same address on the my computer and iPod, both would ring when called, this stopped when I changed the iPod's address). If you change one of the iPod's e-mail address you should be fine. You'll have to do a little experimenting. Hope this helps, Good luck. Cheers.

  • I have changed settings on my email account with my provider, but in order to activate the address they instructed me to delete my account and add a new account with the same email address. Will this delete my all my email history? Any advise please?

    I have an OS X 10.6.8 and have had problems with my mail. I have changed my account settings with my mail provider, but they suggest I now delete my account and add a new account with the same email address. Will this delete my email history? Can anyone please advise?

    I have the same problem as the emails go to my iCloud account that I cannot access!!! I cannot answer the security questions as someone else must have set up my iCloud account. Nothing seems to work. It would be great if someone has some ideas as what can be done to recover the situation?

  • Do you need to use an email as an apple ID?    We have a family email which is currently the apple ID so I can keep track of purchases but i have 2 iPhones and 2 itouches. Can all 4 devices have different apple ID under the same email address. Also for th

    Do you need to use an email as an apple ID?    We have a family email which is currently the apple ID so I can keep track of purchases but i have 2 iPhones and 2 itouches. Can all 4 devices have different apple ID under the same email address. Also I wanted to know because for the game center we wanted to keep track of each individual not just o e account.  DID I MAKE SENSE

    Figured it out. Thanks.

  • HT201320 Both of my kids have an iPod Touch.  Can I have two iPods registered on the same email account or do I have to create a new email account for the second one?

    Both of my kids have an iPod Touch.  Can I have two iPods registered on the same email account or do I have to create a new email account for the second one?

    There is some info in this discussion.
    https://discussions.apple.com/thread/6024120?tstart=0

  • Send emails from a csv file (grouping records with the same email addresses)

    Writing a script to send emails from a csv which contains record details and email addresses using the Send-Mailmessage cmdlet.
    That part is no trouble, however, the csv file contain records that can have the same email address.
    Is there a way/method I could send the records with the same email address once instead of sending individual email messages?
    Thanks
    Data in the csv file
    Record number, description, email
    1234, Test 1, [email protected]
    5678, Test 2, [email protected]
    1245, Test 3, [email protected]
    4578, Test 4, [email protected]
    $data = Import-csv c:\records.csv
    ForEach($address in $data)
    Send-mailmessage -To $address.emails -from [email protected] -subject "List of records" -Body $data -SmtpServer 192.168.1.1

    The following code does what you are looking for:
    $data = Import-csv c:\records.csv$mx = "192.168.1.1"
    $subject = "List of records"
    $from = "[email protected]"
    $data| Group-Object email|Select-Object Name, @{n='msg'; e={$_.Group| Select-Object -Property "record number", description|ConvertTo-Csv -notypeinformation|Out-String}}|
    ForEach-Object {Send-MailMessage -to $_.Name -Body $_.msg -SmtpServer $mx -Subject $subject -From $from}
    I also recommend no forcing everything into one line.  "One-liner" means "one pipeline" not putting all code on one unreadable line.
    Your code should look like this:
    $data|
    Group-Object email|
    Select-Object Name, @{
    n='msg'; e={
    $_.Group| Select-Object -Property "record number", description|
    ConvertTo-Csv -notypeinformation|Out-String
    }|
    ForEach-Object {
    Send-MailMessage -to $_.Name -Body $_.msg -SmtpServer $mx -Subject $subject -From $from
    Now we can see the code and see that you are still unnecessarily converting back and forth.
    To get the group look at how I did it.
    $body=$_.Group | Format-Table |Out-String
    Isn't that much easier?
    Once you master the pipeline these things will become second nature.  In PowerShell it is not necessary to write lots of code most of the time.
    ¯\_(ツ)_/¯

  • How do you get FaceTime to work between two Mac's with the same email address? Thanks, Mike

    How do you get FaceTime to work between two Mac's with the same email address?

    I would like to know the same thing.  How does facetime work between a MacBook Pro and an I Pad that run off the same email address/mac id

  • Can I have multiple event structures with the same event cases?

    Hello, 
    I'm doing an application that reproduces the front panel of the HP6675A power supply. To achieve this, I have done a state machine with different states
    (initialize, measures, voltage, current, ocp, ov, store, recall, etc). In each state, should have an event structure that catches the events of the buttons, like for example: if the current state is the Voltage mode and the user press the current button the next state will be the Current mode. For this in each state of the state machine should be the same event structure with the same events.
    My problem is that the Vi doesn't work properly when I have multiple event structures with the same event cases. There are some possibily to do this, and how? Or is impossible to have multiple events? I have been reading some posts, but I don't find solutions. 
    Any help is appreciated.
    Thank you very much.
    Solved!
    Go to Solution.

    natasftw wrote:
    Or as others mentioned, make two parallel loops.  In one loop, have your state machine.  In the other, have just the Event Handler.  Pass the events from the handler to the state machine by way of queues.
    A proper state machine will not need the second loop.  The "Wait For Event" or "Idle" state (whatever you want to call it) is all you really need in order to catch the user button presses.  The setup is almost there.  Maybe add a shift register to keep track of which state to go to in the case of a timeout on the Event Structure.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Can 2 people set up apple id with the same email address

    My husband and I share the same email address can we set up our apple ids with the same email and different passwords?

    No. You can share the same Apple ID for iTunes content, but for everything else...FaceTime, iMessage, iCloud, etc., you really need separate Apple ID's & these iD's must be verifiable email addresses. If you don't set things up that way, you'll have a mess on your hands.

  • My husband and I share the same email address. Is there someway to have different AppleIDs with the same email address?

    My husband and I share the same email address at home. Is there some way creating an Apple ID using the same email address? We have multiple apple devices at home (2x iphone4, imac, mini ipad, and notebook) and want our emails from that one address to come through on the different devices.

    No, you cannot have the same primary email address used for two separate Apple IDs.
    However, you can sign into the same email address on your separate devices for the purposes of receiving mail.  Go to Settings > Mail, Contacts & Calendars > Add Account.
    Apple IDs are for using Apple services, like the App Store, iTunes, etc.
    Email addresses (while used as the NAME of an Apple ID), are separate entities.

  • Two Apple ID with the same email address.

    Hello,
    I have 2 Apple ID's using the same email address.
    When I sign in with my Apple ID in the Apple Support Communities web he request me to "Choose your Apple Support Communities username.", So I write a user name and click continue - and this error message is shown: "account utilizing this email address already exists. Only one account per email address is allowed on Apple Support Communities."
    I know which Apple ID user using this email address but I can't change to different email address (this option in "Edit Profile" is impossible).
    What I can do?!

    This advice is not proper for the issue at hand.
    Your advise lets you reset the Apple ID not verify your current ID.
    In either case the recommended link does not work at this time - nor gives any response as to why you do not recieve the email they promise!!

  • I want to use I face between two ipads with the same email address

    I have two ipads and special circumstances dictate using the same email address for both is this possible somehow?

    Also, See here for,
    Using FaceTime
    http://support.apple.com/kb/ht4319

Maybe you are looking for