Mail to multiple using Utl_Smtp

Hello

I want to send to multiple addresses using Utl_Smtp.

When I send email to an address in the field: it works very well. However, when I send
to more than one address, I get the error below. I use a table (Email_test) to store all email ID.


Error report:
ORA-29279: SMTP permanent error: 501 5.1.3 address not valid
ORA-06512: at "SYS." UTL_SMTP", line 20
ORA-06512: at "SYS." UTL_SMTP", line 98
ORA-06512: at "SYS." UTL_SMTP", line 240
ORA-06512: at line 48
29279 00000 - "SMTP permanent error: %s."
* Cause: A permanent SMTP error occurred.
* Action: Correct the error and retry the operation of SMTP.


I have tried two options two ways I get the error message

Option 1:
By selecting two email id indivually in the query select as below

Select e-mail in v_Recipient1 Email_test where Key_name = "U1".
Select e-mail in v_Recipient2 Email_test where Key_name = "U2".
v_Recipient: = v_Recipient1 | « ; » || v_Recipient2;

Option 2:
Is it possible to use the option
Select e-mail in v_Recipient1 Email_test where Key_name = "U4".

===========================================================
Create table Script
===========================================================

create table Email_test (Email varchar2 (100), Key_name varchar2 (10));

insert into Email_test values ("[email protected]", "U1");
insert into Email_test values ('[email protected]', 'U2');
insert into Email_test values ('[email protected]', 'U3')
insert into Email_test values ('[email protected];) [email protected]; [email protected] U4 ',' ');


Select * from Email_test

[email protected] U1
[email protected] U2
U3 [email protected]
[email protected]; [email protected]; [email protected] U4


Select * from Email_test where Key_name ('U1', 'U2', 'U3')
[email protected] U1
[email protected] U2
U3 [email protected]

Select * from Email_test where Key_name = "U4".
[email protected]; [email protected]; [email protected]
=======================================================
PL/SQL block
===========================================================


declare
v_From VARCHAR2 (80): = "[email protected]";
v_cc VARCHAR2 (80);
v_Recipient VARCHAR2 (80);
v_Recipient1 VARCHAR2 (80);
v_Recipient2 VARCHAR2 (80);
v_Subject VARCHAR2 (80);
v_Mail_Host VARCHAR2 (50);
v_Mail_Conn utl_smtp. Connection;
CRLF VARCHAR2 (2): = Chr (13) | Chr (10);

Start

-Mail host name
Select the VALUE in v_Mail_Host to Server_info where server_name = "SMTPServer";

Select e-mail in v_Recipient1 Email_test where Key_name = "U1".
Select e-mail in v_Recipient2 Email_test where Key_name = "U2".

v_Recipient: = v_Recipient1 | « ; » || v_Recipient2;

-for CC
Select e-mail in v_cc Email_test where Key_name = "U3";

v_Mail_Conn: = utl_smtp. Open_Connection (v_Mail_Host, 25);
UTL_SMTP. HELO (v_Mail_Conn, v_Mail_Host);
UTL_SMTP. Mail (v_Mail_Conn, v_From);

UTL_SMTP. RCPT (v_Mail_Conn, v_Recipient);
UTL_SMTP. RCPT (v_Mail_Conn, v_cc); -To the CC recipient
utl_smtp. RCPT (v_Mail_Conn, v_BCC); BCC recipient

UTL_SMTP. Data (v_Mail_Conn,
' Date: ' | TO_CHAR (sysdate, ' Dy, hh24:mi:ss DD month YYYY ') | CRLF.
' De : ' || v_From | CRLF.
"Subject: ' |" v_Subject | CRLF.
' De : ' || v_Recipient | CRLF.
"Cc:". v_cc | CRLF.
' Content-Type: text/html; "|| CRLF.
-"Hello this is a test email");
CRLF. TO_CHAR (sysdate, ' Dy, hh24:mi:ss DD month YYYY ') | CRLF);

UTL_SMTP. Quit (v_mail_conn);
end;


Any suggestion how to approach this issue.
Thank you

Hello

Have you checked the note on the use of utl_smtp.rcpt?
http://docs.Oracle.com/CD/E11882_01/AppDev.112/e25788/u_smtp.htm#i1002798

In any case, I think that there is a better alternative ult_mail
http://docs.Oracle.com/CD/E11882_01/AppDev.112/e25788/u_mail.htm#ARPLS71198

Concerning
Peter

PS: If a delimiter between multiple recipients is possible, I think wouldn't be comma - semicolon

Published by: Peter on March 7, 2013 12:09

Tags: Database

Similar Questions

  • Sending mail with an attachment using UTL_SMTP

    Hi all

    I'm working on a PL/SQL code, where do I send a mail with an attachment using UTL_SMTP. I use the following code, I changed the value of p_to and p_from

    DECLARE

    l_mail_conn UTL_SMTP.connection;

    l_boundary VARCHAR2 (50): = '-= * #abc1234321cba #* =';

    l_step PLS_INTEGER: = 12000; -Make sure you define a multiple of 3 would not exceed the 24573

    p_to VARCHAR2 (100): = ' [email protected] ';

    p_from VARCHAR2 (100): = ' [email protected] ';

    p_subject VARCHAR2 (100): = "UPLOAD of FILE MAIL."

    p_text_msg VARCHAR2 (100): = 'it is a system generated email';

    p_attach_name VARCHAR2 (100);

    p_attach_mime VARCHAR2 (100);

    p_attach_blob BLOB;

    p_smtp_host VARCHAR2 (100): = 'localhost ';

    p_smtp_port NUMBER: = 25;

    BEGIN

    l_mail_conn: = UTL_SMTP.open_connection (p_smtp_host, p_smtp_port);

    UTL_SMTP. HELO (l_mail_conn, p_smtp_host);

    UTL_SMTP.mail (l_mail_conn, p_from);

    UTL_SMTP. RCPT (l_mail_conn, p_to);

    UTL_SMTP.open_data (l_mail_conn);

    UTL_SMTP.write_data (l_mail_conn, ' Date: ' |) TO_CHAR (SYSDATE, ' ' DD-MON-YYYY HH24:MI:SS) | UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' from: ' | p_to |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' from: ' | p_from |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' subject: ' | p_subject |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Reply-To: ' | p_from |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, "MIME-Version: 1.0 ' |") UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Type: multipart/mixed; limit = "" | ") l_boundary | '"' || UTL_TCP. CRLF. UTL_TCP. CRLF);

    IF p_text_msg IS NOT NULL THEN

    UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Type: text/plain; charset = "iso-8859-1" ' |) UTL_TCP. CRLF. UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, p_text_msg);

    UTL_SMTP.write_data (l_mail_conn, UTL_TCP.crlf |) UTL_TCP. CRLF);

    END IF;

    IF p_attach_name IS NOT NULL THEN

    FOR I IN (SELECT *)

    OF xx_mail_test_table

    WHERE ROWNUM = 1

    ORDER BY last_update_date DESC) LOOP

    UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Type: ' | p_attach_mime |) '; name =' ' | I.FILE_NAME | '"' || UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, "Content-Transfer-Encoding: base64' |") UTL_TCP. CRLF);

    UTL_SMTP.write_data (l_mail_conn, ' Content-Disposition: attachment; filename = "" | ") I.FILE_NAME | '"' || UTL_TCP. CRLF. UTL_TCP. CRLF);

    FOR J FROM 0... TRUNC ((DBMS_LOB. GetLength (I.file_name) - 1) / l_step) LOOP

    UTL_SMTP.write_data (l_mail_conn, UTL_RAW.cast_to_varchar2 (UTL_ENCODE.base64_encode (DBMS_LOB.substr (I.FILE_NAME, l_step, J * l_step + 1)));)

    END LOOP;

    UTL_SMTP.write_data (l_mail_conn, UTL_TCP.crlf |) UTL_TCP. CRLF);

    END LOOP;

    END IF;

    UTL_SMTP.write_data (l_mail_conn, '-' | l_boundary |) '--' || UTL_TCP. CRLF);

    UTL_SMTP.close_data (l_mail_conn);

    UTL_SMTP. Quit (l_mail_conn);

    EXCEPTION

    WHEN utl_smtp.transient_error OR utl_smtp.permanent_error THEN

    UTL_SMTP. Quit (l_mail_conn);

    lift;

    WHILE OTHERS THEN

    dbms_output.put_line (SQLERRM);

    END;

    This is when I execute the block that I get 2 mails to the same but there are some attachments, I checked the table and he gave.

    Could someone help me as to where I'm wrong?

    Create the raw DATA for the SMTP protocol can be tricky.

    I cheat and use a package that has been designed to do easily.

    APEX_MAIL

    MK

  • Oracle to send email with the size of the content of more than 32 k using UTL_SMTP

    Hi all

    I Googled, and also searched the oracle forums and I did not find a good link to see when dealing with sending e-mails with content size over 32 k using UTL_SMTP. If someone can you please direct me to some links that would be a great help.

    Thank you

    Rambeau

    It's because you first set 'Hello World,' mailBody (mailBody.COUNT) and then immediately replace by "test sample". Maybe you wanted to EXTEND between postings...

  • Encoding file attached using UTL_SMTP.

    Hello group,

    I was asked to use UTL_SMTP to send a simple file in a version of oracle 9i on Windows database, I get the attachment to my mail, but the problem is that when we open the file, the text shows junk characters, or only numbers...

    What controls for setting the text encoding or what I'm doing wrong.

    Thanks in advance.
    declare
      l_maicon utl_smtp.connection;
      l_boundary    VARCHAR2(50) := '----=*#abc1234321cba#*=';
    ---
      v_archivo bfile:=NULL;
      v_texto varchar(4000);
      v_adjunto raw(32767);
    begin
      l_maicon :=utl_smtp.open_connection('mail.anyuser.com');
      utl_smtp.helo(l_maicon,'hostname');
      utl_smtp.mail(l_maicon,'[email protected]');
      utl_smtp.rcpt(l_maicon,'[email protected]');
    
      UTL_SMTP.open_data(l_maicon);
      
      UTL_SMTP.write_data(l_maicon, 'Date: ' || TO_CHAR(SYSDATE, 'DD-MON-YYYY HH24:MI:SS') || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_maicon, 'To: ' || '[email protected]' || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_maicon, 'From: ' || '[email protected]' || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_maicon, 'Subject: ' || 'test email oracle 9i con anexado'|| UTL_TCP.crlf);
    --  UTL_SMTP.write_data(l_maicon, 'Reply-To: ' || p_from || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_maicon, 'MIME-Version: 1.0' || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_maicon, 'Content-Type: multipart/mixed; boundary="' || l_boundary || '"' || UTL_TCP.crlf || UTL_TCP.crlf);
      
      UTL_SMTP.write_data(l_maicon, '--' || l_boundary || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_maicon, 'Content-Type: text/plain; charset="iso-8859-1"' || UTL_TCP.crlf || UTL_TCP.crlf);
    
      UTL_SMTP.write_data(l_maicon, 'test de email oracle 9i, pf no tomar en cuenta');
      UTL_SMTP.write_data(l_maicon, UTL_TCP.crlf || UTL_TCP.crlf);
    
    
      UTL_SMTP.write_data(l_maicon, '--' || l_boundary || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_maicon, 'Content-Type: ' || 'text/plain; charset="iso-8859-1"' || '; name="' || 'switch.sql' || '"' || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_maicon, 'Content-Transfer-Encoding: base64' || UTL_TCP.crlf);
      UTL_SMTP.write_data(l_maicon, 'Content-Disposition: attachment; filename="' || 'switch.sql' || '"' || UTL_TCP.crlf || UTL_TCP.crlf);
    
      v_archivo:=bfilename('BDUMP', 'switch.sql');
      dbms_lob.fileopen(v_archivo, dbms_lob.file_readonly);
      v_adjunto:=dbms_lob.substr(v_archivo);
    --  v_texto:=dbms_lob.substr(v_archivo);
      dbms_lob.close(v_archivo);
    
      UTL_SMTP.write_data(l_maicon, v_adjunto);
    
      UTL_SMTP.write_data(l_maicon, UTL_TCP.crlf || UTL_TCP.crlf);
      
      UTL_SMTP.write_data(l_maicon, '--' || l_boundary || '--' || UTL_TCP.crlf);
      UTL_SMTP.close_data(l_maicon);
    
      utl_smtp.quit(l_maicon);
    end;
    /

    You informed of your recipient, you put the file encoded as an attachment

     UTL_SMTP.write_data(l_maicon, 'Content-Transfer-Encoding: base64' || UTL_TCP.crlf); 
    

    but you put lob not encoded file

     v_archivo:=bfilename('BDUMP', 'switch.sql');
      dbms_lob.fileopen(v_archivo, dbms_lob.file_readonly);
      v_adjunto:=dbms_lob.substr(v_archivo);
    --  v_texto:=dbms_lob.substr(v_archivo);
      dbms_lob.close(v_archivo);
    

    Your recipient is trying to not decode not encoded the file and spit out.

    You must code them your attachment with UTL_ENCODE.base64_encode before sending an email.

  • send e-mails to multiple addresses

    Hi guys,.

    a question about the APEX_MAIL package. Has anyone tried to send e-mails to multiple addresses by using the p_cc parameter? I found a description how to do this, but it does not work when the addresses are stored in the variables:
    p_cc:  Valid email addresses to which the email is copied. For multiple email addresses, use a comma-separated list
    As it's works, but if I want to add another address to p_cc (stored in a variable), it no longer works.
     l_id := HTMLDB_MAIL.SEND(
            p_to        => receiver,
            p_cc        => receiver2,___________,
            p_from      => sender,
            p_subj      => subject,
            p_body      => body,
            p_body_html => body_html);
    Does anyone know the correct syntax to add a second receiver stored in a variable?

    Thank you for your time and help!
    Concerning
    Patrick

    Patrick,

    Using your code as the base and making the following assumptions:
    1 ' receiver' and "receiver2" are hard-coded electronic addresses
    2. the name of the variable is l_cc02

    Try the following:

     l_id := HTMLDB_MAIL.SEND(
            p_to        => '[email protected]',
            p_cc        => '[email protected],' || l_cc02,
            p_from      => sender,
            p_subj      => subject,
            p_body      => body,
            p_body_html => body_html);
    

    Note the comma at the end of the 'other' email address.

    Kind regards
    Dan

    http://danielmcghan.us
    http://sourceforge.NET/projects/tapigen
    http://sourceforge.NET/projects/plrecur

  • Question about sending e-mail to multiple recipients

    Hi all

    I'm creating a workflow that will send a notification by email each time a new campaign is created. I learned that R16 is able to send emails to multiple recipients, the only concern I have is that I can't find everything will have on how to do it. It is indicated in the Guide of Preview R16 administrator you can select "specific"E-mail address ", enter several e-mail addresses directly, tried to enter several e-mail addresses separated by comma - [email protected], [email protected], [email protected] for example, but it does not work and invites me to enter a valid email address. Could someone guide me on how to enter several e-mail addresses when you select 'Specific E-mail address' or how to do it in the expression builder to set the expression that defines the list of emails. I know that by using addresses group e-mail can be used as an alternative to this requirement, but I hope that their way to proceed with workflows.

    Thank you
    Wayne

    Wayne,

    Outlook uses one; to divide email addresses have you tried?

    see you soon
    Alex

  • Can what free e-mail program I use to create an e-mail address to reserve for use with a Mozilla browser?

    Hello

    Since it took over an hour to send an email from my gmail address, the other andsince of night I tried without success to create an address @outlook.com in Internet Explorer 8, I would use Mozilla to create a free reserve email address. Is it possible to do in Mozilla instead of using Google Chrome or Internet Explorer 8? Thank you for helping a dummie real when it comes to create an email address of reserve.

    Kind regards
    Edwin

    To display the toolbar of bookmarks in the toolbar box, you can use one of these menus:

    • Right click on an empty area of the tab bar
    • Press the Alt key > menu view > toolbars

    It is a shortcut to Yahoo mail, you can use this URL:

    https://mail.Yahoo.com/

    It is a shortcut for Gmail, you can use this URL:

    https://www.gmail.com/

    You can add those toolbar bookmarks by dragging the link and by the applicant on the toolbar. To shorten the name, right click on the bookmark, and then select Properties. Then change the name (not location).

    More information on bookmarks in Firefox:

    About Thunderbird, if you have ever used, I think that you can go ahead and remove it.

  • After installing IOS 9.3 for Ipad3. I can't activate iPad by Apple ID display error meassage «e-mail cannot be used to unlock the iPad»

    After installing IOS 9.3 for Ipad3. I can't activate iPad by Apple ID display error meassage «e-mail cannot be used to unlock the iPad»

    If you see the lock of Activation screen after update your iOS device, you want to try the following:

    -Restart your iOS device and try to connect again.

    -Visit appleid.apple.com and log in to ensure that your password is correct.  If you change something here, only to change your password.  Try to connect again on the iPhone.

    -Connect on iTunes on a computer and put your Apple ID and password when it prompts you (as it did on your iOS device).

    -ICloud.com check in the settings.  If you see your iOS device listed, remove account (do not erase or hit lost mode). Restart your device and try to reconfigure.

    -These measures should solve most of the problems.  For someone else, you will need to contact Apple (1-800-MY-APPLE or getsupport.apple.com).

    I hope that helps!

  • I opened a word from Windows Mail document, changed using Word 2007, you press on save and close the document. Now I can not find where he saved.

    original title: Windows Mail ate my file

    I opened a word from Windows Mail document, changed using Word 2007, you press on save and close the document.  Now I can not find where he saved.  I tried the search function in Vista, but it can not find the file either.  I tried to re - open the file in the email, but I just get the original version.  Can anyone suggest where it might be?

    Thank you very much

    Eamonn

    Once you open a Word attachment in an email, you must save it to your HARD drive until you make changes. If you do not, the changes are lost, but the original attachment is still with the e-mail.

  • PDM does not support multiple uses of a given ACL

    Hello

    I just upgraded to 2.11 PDM and I get the error above? Smeone help me identify what means multiple use?

    Thank you

    RC

    This means that you used the same two purposes access list in the configuration.

    For example you may have used access-list 101 for nat 0 and crypto correspondence address.

    hope this helps,

    -Nairi

  • Unable to get into the MSN account or by mail WHEN you use Norton connection for security reasons. I can't add attatchments.

    I use Norton Secure login. MSN & mail is the only site that I can't access. This mind by scary business monitoring, MSN? Sorry ' end that.  I can't add attachments to the e-mail message. Apparently, there are many of us with the problem of attachments. Why I use msn? anyone?

    Hello

    Thanks for posting the request in the Microsoft community forums.

    It seems that you are not able to MSN account or by mail when you use the connection of Norton.

    You can try to disable Norton antivirus installed on the computer and check is that you are able to connect to MSN and email.
    http://Windows.Microsoft.com/en-us/Windows7/disable-antivirus-software
    NOTE: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable the antivirus software. If you need to disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network, while your antivirus software is disabled, your computer is vulnerable to attacks.

    We know if you need help with Windows. We will be happy to help you.

  • Windows 8 Mail stores multiple copies of attachments / images

    I have more than 5 GB of redundant images which I believe are due to the Mail App - they are stored in several files under Appdata\local\Packages\Microsoft.windowscommunicationsapps_8wekyb3ddwe\LocalState\LiveComm\...\Att

    In one case at least, I have 319 copies of the same image.  I don't know what is happening or how to get rid of them, but my drive fills up quickly.

    Thought to the multiple copy could be due to Microsoft Essentials but uninstalled and get even more copies.  Cannot change/remove the msn since the application mail e-mail account because it is the main account that I have to connect you to the help.

    Thank you

    You can if you wish.  Just set your desktop programs (Outlook, Media Player, notebook, Photo Viewer) to be the default manager. You can even use a start 'XP style' menu without additional work like that if you want to:

  • Sending a message using UTL_SMTP, get the error ORA-29278: SMTP temporary error

    Hi all

    I try to send mail from oracle plsql. for that I use the below mode operative but unfortunately not able to move forward.
    SQL> select * from v$version;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    procedure is
    CREATE OR REPLACE PROCEDURE send_mail (p_to        IN VARCHAR2,
                                           p_from      IN VARCHAR2,
                                           p_message   IN VARCHAR2)
    AS
      l_mail_conn   UTL_SMTP.connection;
      l_reply utl_smtp.reply;
      l_smtp_host VARCHAR2(50) := 'smtp.gmail.com:25';
      l_smtp_port NUMBER := 25;  
    BEGIN
      l_mail_conn := UTL_SMTP.open_connection(l_smtp_host, l_smtp_port);
      utl_smtp.EHLO(l_mail_conn, l_smtp_host);
      utl_smtp.command(l_mail_conn, 'AUTH LOGIN');
      utl_smtp.command(l_mail_conn, utl_raw.cast_to_varchar2(utl_encode.base64_encode(utl_raw.cast_to_raw('[email protected]'))));
      utl_smtp.command(l_mail_conn, utl_raw.cast_to_varchar2(utl_encode.base64_encode(utl_raw.cast_to_raw('mypwd'))));
      l_reply :=UTL_SMTP.mail(l_mail_conn, p_from);
      dbms_output.put_line( l_reply.code || ' ' || l_reply.text );
      UTL_SMTP.rcpt(l_mail_conn, p_to);
      UTL_SMTP.write_data(l_mail_conn, p_message || UTL_TCP.crlf || UTL_TCP.crlf);
      UTL_SMTP.quit(l_mail_conn);
    END;
    /
    call you as follows
    declare
     conn        utl_smtp.connection;
     smtp_domain VARCHAR2(256) := null;
     BEGIN
     utl_smtp.command(conn,'STARTTLS');
     utl_smtp.helo(conn, smtp_domain);
       send_mail(p_to        => '[email protected]',
                 p_from      => '[email protected]',
                 p_message   => 'can i get message.');
     END;
     /
    and the error
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 97
    ORA-06512: at "SYS.UTL_SMTP", line 159
    ORA-06512: at line 5
    I checked in Control Panel that IIS is installed and also SMTP is configured.
    I am able to ping HOST SMTP thro' TELNET

    and I changed the parameter, SMTP_OUT_SERVER, as
    ALTER SYSTEM SET SMTP_OUT_SERVER= 'smtp.gmail.com:25' scope = both
    I don't get no idea. is this due to use the GMAIL Server?

    Oracle 10 g and Windows version is XP - SP3

    Thanks for any help

    Concerning
    Knockaert

    When I googled for "Gmail PL/SQL" I find a lot of things, including the articles of blog with code examples. How about you?

  • Mail from Apple using incorrect email (typo)

    Hello

    Apple Mail uses invalid (typo) email address Hotmail to send the same mail so correct was provided and is present in the settings.  The user's e-mail address is * [email protected], but when sending mail it tries to connect with the imap server using the * [email protected] (obvious typo).  I checked that the e-mail address is correct in the e-mail settings and address book.  I tried to delete the account and restart the phone and then add the account but this does not solve the problem.

    Mail from this account can not be sent, but is received correctly.  Other mail on telephone accounts, send and receive a fine.  Phone is 6s with installed 9.3.4

    Any advice?

    drusomeIT wrote:

    Mail from this account can not be sent, but is received correctly.

    That has to do with the outgoing SMTP settings. If you can not change this setting, remove and add the account as "Other" type. You will need the following information:

    Incoming mail server

    • Account type: IMAP
    • Username: [email protected]
    • Host name of the server: imap - mail.outlook.com
    • Server port: 993
    • Authentication: password
    • SSL/TLS: Yes

    Outgoing e-mail server

    • User name: _______[email protected]
    • Host name of the server: smtp - mail.outlook.com
    • Server port: 587
    • Authentication: password
    • SSL/TLS: Yes
  • How can NOT synchronize US Mail on multiple computers

    My wife and I work together - often on the same project for each of us have our Mac Mail applications over the years whenever our e-mail set up on both accounts. It worked very well on the POP, the being remained 'unread messages ', even if the other person has read on their Macs. We could delete e-mails from the other person off our own Mac without deleting their Mac.

    Now that we've changed IMAP, I can't delete emails from work / impersonal off my Mac without him deleting his Mac too. And if I read an important work related email to my wife, she will appear as already read (no blue dot) on his Mac (and vice versa). We missed a few important messages to customers because of this.

    How can we make this judgment of the synchronization? that is to keep blue on my Mac until I read them myself. and NOT delete messages on both machines.

    We use our company, registered to 1and1 custom domain name. (we do not share the iCloud/gmail accounts etc.)

    iMac osx Mac Mail Version 9.3 10.11.6,

    Thank you!

    That's how IMAP works. Why not just have separate email accounts?

    Alternatively, go POP accounts if it allows your email provider.

Maybe you are looking for

  • Questions new installation HD SSD for MacBook Pro

    I followed the online instructions how to install the SSD for my MacBook Pro. I then rebooted by Mac in recovery mode and formatted the drive in Mac OS extended (journaled). It was a little bit tricky message sometimes giving such as erasure of disk

  • Upgrading processor on Satellite Pro SP 2100

    Hi all. I have a portable Satellite Pro SP 2100 with a Celeron 1.5 GHz (SL6FN) processor.Becomes a bit long in the tooth if I decided to buy a processor 2.0 GHz Pentium - SL6FK with 512 KB of L2 Cache. I did research on the index of processors intel

  • Need firmware 32XV505D

    Hello I need new firmware for my TV. I know that his former model USB and lan, but I am an electronics so I can do it way more difficult (reprogram chip memory) :) I don't see that one place where I see software update option, in the menu of the digi

  • New Thinkpad T400 is not start the system

    Hello world I received my new Thinkpad T400 a month ago, product ID 2764CT 0. I told my computer to the hibernate after that the battery power is 5% of its capacity. I forgot to put the computer off last night and this morning, when I plugged the pow

  • you do not have the necessary permissions this cette tache task for help, please contact adminatrator

    you do not have permissions to perform this task, please contact administrator help, im signed to ask administrator so why can I perform the task? Thanks in advance for your help