Problem sending e-mails out of the country

My dad is out of the country and when he tries to send an e-mail from his phone (over wifi) it wont send. He gets an error saying the server is blocked (or something like that). He always has his BCC on. But when he deletes his name form the BCC spot it will send no problem. Why is he having this problem when the BCC is on?

Hi,
Just as our MVP mentioned, it's not possible to send all email in a folder at once. However, there are some workarounds. For example, we can disable “Send immediately when connected”. To do this, open your Outlook and go to File > Options > Advanced
> Scroll down to the "Send and receive" section. Clear the check box before "Send immediately when connected". Now, all sent items will stay in Outbox and Outlook will
only send messages during the scheduled send/receive interval (for instance, every 30 minutes).
For more information, please refer:
http://www.msoutlook.info/question/181
Hope this helps.
Best Regards,
Steve Fan
TechNet Community Support

Similar Messages

  • HT1277 I have quickbooks software. I am traveling. I tried to send an invoice out, using the mac email (version 5.3) I can't send the mail out. I get a pop up asking for my password, I put the password in and it does not accept it.

    I have quickbooks software. I am traveling. I tried to send an invoice out, using the mac email (version 5.3) I can't send the mail out. I get a pop up asking for my password, I put the password in and it does not accept it. This is the 1st time I've had this problem.
    slpmtns

    Whilst it may not be your fault I am afraid it appears that your post is on a forum which is not the best for your OS. It will save the time of the unpaid volunteers here, and may resolve your issue faster, if you could examine the list below and see if there is a more appropriate forum to which you could direct your question.
    OS X 10.9 Mavericks
    OS X 10.8 Mountain Lion
    OS X 10.7 Lion
    OS X 10.6 Snow Leopard
    OS X 10.5 Leopard
    OS X 10.4 Tiger
    OS X 10.3 and earlier
    OS 9, OS 8 & System 7
    OS X Technologies
    OS X Server
    iPad
    iPhone
    iPod
    Other

  • When sending e mails, w attch the system stalls out just "spinning, not attaching, does not happen with exploere

    When attempting to send e-mails w/ attacments, the systems stalls out, just keeps spinning, problem does not occur with exporer.
    Also when trying to attch pics, same thing

    No need to be inhappy.
    iPhoto Menu -> Preferences -> Accounts ->
    Delete and recreate your email settings.
    Alternatively, use Apple's Mail for the job. It has Templates too - and more of them.
    There's no need to go through that exporting routine. Your iPhoto Library is available in every app.  See this for more:
    For help accessing your photos in iPhoto see this user tip:
    https://discussions.apple.com/docs/DOC-4491

  • Having problem sending e-mails.  There's a message on the screen saying that "the sender address was rejected by a server.

    I'm having problem sending e-mails.  There's a message on the screen after I press send saying that "The sender adress was rejected by a server.

    Check the outgoing mail server setting. Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • How do I shut off receiving phone and text messages when I a out of the country but instill want to send and receive emails emails

    How do I shut off receiving phone and text messages when I am out of the country.  I still want to be able to email and receive email on wifi

    Enable Airplane mode followed by turning on wi-fi access.

  • I have problems sending e-mail from my iPhone.  I can receive OK.

    I have problems sending e-mail from my iPhone.  I can receive OK.  The e-mail gets put in the outbox, but never goes out.

    Did you set it up following this:
    http://portal.activehost.com/knowledgebase.php?action=displayarticle&id=4744

  • How to send a mail by ckicking the button using java

    hi,
    how to send a mail by clicking the button (like payroll silp in that contain one button if we click that it autometically go through the mail as a attachment) pls frd to me my gmail is [email protected]

    Hi,
    It seems we are doing the homework for you; to make you start with something; look at the sample code below and try to understand it first then put the right values
    to send an email with an attachement.
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.util.Date;
    import java.util.Properties;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Multipart;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.swing.AbstractAction;
    import javax.swing.Action;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    public class Main {
          * @param args
         public static void main(String[] args) {
              // Create the frame
              String title = "Frame Title";
              JFrame frame = new JFrame(title);
              // Create a component to add to the frame
              JComponent comp = new JTextField();
              Action action = new AbstractAction("Button Label") {
                   // This method is called when the button is pressed
                   public void actionPerformed(ActionEvent evt) {
                        System.out.println("sending email with attachment");
                        sendEmail();
              // Create the button
              JButton button = new JButton(action);
              // Add the component to the frame's content pane;
              // by default, the content pane has a border layout
              frame.getContentPane().add(comp, BorderLayout.SOUTH);
              frame.getContentPane().add(button, BorderLayout.NORTH);
              // Show the frame
              int width = 300;
              int height = 300;
              frame.setSize(width, height);
              frame.setVisible(true);
         protected static void sendEmail() {
              String from = "me@localhost";
              String to = "me@localhost";
              String subject = "Important Message";
              String bodyText = "This is a important message with attachment";
              String filename = "c:\\tmp\\message.pdf";
              Properties properties = new Properties();
              properties.put("mail.stmp.host", "localhost");
              properties.put("mail.smtp.port", "25");
              Session session = Session.getDefaultInstance(properties, null);
              try {
                   MimeMessage message = new MimeMessage(session);
                   message.setFrom(new InternetAddress(from));
                   message.setRecipient(Message.RecipientType.TO, new InternetAddress(
                             to));
                   message.setSubject(subject);
                   message.setSentDate(new Date());
                   // Set the email message text.
                   MimeBodyPart messagePart = new MimeBodyPart();
                   messagePart.setText(bodyText);
                   // Set the email attachment file
                   MimeBodyPart attachmentPart = new MimeBodyPart();
                   FileDataSource fileDataSource = new FileDataSource(filename) {
                        @Override
                        public String getContentType() {
                             return "application/octet-stream";
                   attachmentPart.setDataHandler(new DataHandler(fileDataSource));
                   attachmentPart.setFileName(filename);
                   Multipart multipart = new MimeMultipart();
                   multipart.addBodyPart(messagePart);
                   multipart.addBodyPart(attachmentPart);
                   message.setContent(multipart);
                   Transport.send(message);
              } catch (MessagingException e) {
                   e.printStackTrace();
    }The sample above is not ideal so you need to go through it and start to ask me some questions if you have
    Let me know if you miss something
    Regards,
    Alan Mehio
    London,UK

  • When using imessage with another iphone user, is it still free to message them if they're out of the country?

    my friend is out of the country, and he wants use imessage, but i dont know if it will give me charges to my account and apple doesnt mention if it's only unlimited messaging within the country

    iMessage uses data, just like an email, if I can use that analogy. It will not count as SMS, however I have read somewhere where some people have reported getting SMS charges when using iMessage. I believe it is impossible though, unless the message does not go through and you have send as SMS checked in settings if the iMessage fails.

  • My daugter is out of the country and can't connect to WiFi

    My daughter is out of the country and can't connect to WiFi or make any calls.  We added International Calling to her phone plan.  While she was in the airport in the US the problem started, and continued once she reached her destination.  Verizon can't figure out what the problem is, and I'm wondering if it's a hardware issue?

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • Is anyone else having a problem sending a mail message with PDF attached?

    Is anyone else having a problem sending a mail message with PDF attached? I receive the following message:
    Sending the message content to the server failed.
    Select a different outgoing mail server from the list below or click Try Later to leave the message in your Outbox until it can be sent.
    Is there a fix for this?

    Anyone?  I was hoping my problem would just 'fix itself'...  but I still have some clients telling me they're not receiving any email from me.  I've since deleted that account on my computers and re-added it.  But still having the same issue. 

  • Can I use US Skype number while out of the country

    I would like to be able to forward my work phone to a local US skype number and answer while traveling out of the country. Is this possible?
    If not, how would I do this?

    bthale wrote:
    I would like to be able to forward my work phone to a local US skype number and answer while traveling out of the country. Is this possible?
    If not, how would I do this?
    Yes, you can use a US Skype Number while you're out of the country.
    Even if you're overseas your friends and relatives can call your US Skype Number at local rates. When they want to call you, simply sign in to Skype and answer the call when it rings – and you pay nothing to answer the call.
    For more information about Skype Number, please visit this link: https://support.skype.com/en/faq/FA331/
    Our greatest weakness lies in giving up. The most certain way to succeed is always to try just one more time.
    If you found my post useful, please give "Kudos".
    If it helped to answer your problem/question, please mark it as "Accepted Solution" so other people can find it easily.

  • Problems sending/eceiving mail

    The last month or so I've been having problems sending/receiving mail thru the Apple mail app. the error message is something like, error sending mail, try with another client? Comcast is my mail server, but I also have my Google account accessible thru mail, so I use that to send. I can definitely work around this, but am wondering what I might do to fix it?
    Message was edited by: lbell

    I have the identical issue with comcast and mail (...) it's really not their issue - I'm sure it's the mail app
    Really? What makes you so sure? I've had no problems connecting to any mail servers (within allowed use limits imposed by the server, like not sending from outside their network) using Mail, and I've used it over the years with Earthlink, Adelphia, RoadRunner, GMail, pair.com and Mac.com (those are the ones I remember). If multiple people are having problems with Comcast+Mail, chances are better that Comcast is doing something a little on the edge of dodgy than that Mail is doing something wrong that only shows up with Comcast servers.

  • Ipad2 not sending e mails they just disappear no comments no problem sending e mails on gmail

    IPad 2 will not send emails just disappear no response no problem sending e mails using g mail

    Have you checked your configuration against the official settings?
    http://mail.google.com/support/bin/answer.py?answer=78799
    The account name is to include the "@gmail.com" part.

  • TS3899 My iphone has had problems sending e-mail via my 1&1 e-mail account

    My iphone has had problems sending e-mail via my 1&1 e-mail account for the last two days.  I get a 'recipient rejected by the server' message.  I have not changed any settings.  If I change the from address to i-cloud the e-mails go.  Advice please.

    i think you need to contact your email provider - that sounds like an issue on their end and nothing to do with your phone.

  • How do you get mail out of the Outbox?

    How do you get mail out of the Outbox?  I've taken pictures and am trying to email them.  The emails are stuck in Outbox.
    lee.ann3

    Thanks Diggie, your response was very close.  I clicked on the email several times.  It came up and gave me the option to Send.  I clicked Send and my recipients received the email.
    I did not have to delete and reinstall my email account.
    Have a good day.
    lee.ann3

Maybe you are looking for

  • IBooks not updating via cloud...

    Here's the situtation: I've got a retina iPad running latest IOS and iBooks. I have roughly 780 books little to no pdfs due to the ongoing pdf errors of not loading. I've updated to mavericks. Open ibooks app it transfered about 715 books over. I fou

  • User without the Chief position in org id to view the resources under him.

    Hi, The requirement is: A person who is playing the role of a crew leader should be able to fill the time sheet of his crew. This person will not be given the chief position for the org id that he is tagged to. There will be different person who will

  • Interface Criticity

    Hi experts, how would you define : a high criticity interface ? a medium ? a low ? Kind regards, Jamal

  • Lion Mail crashes when clicking on hyperlinks in messages

    since installing LION, mail crashes when I click on any hyperlink in  email messages.  Interestingly it worked fine for a few days then all of a sudden the crashes started. Tried resetting PRAM; un installed a bunch of 3rd party apps that run all the

  • Is it possible to have sub-folder events inside an event on iPhoto?

    Is it at all possible to have an Event (eg. Pets) then have sub-events inside that event (eg. Dog, Cat etc.) in iPhoto? I can't seem to find anything... Any help greatly appreciated.