Cannot send outgoing mail via Lotus Notes

Just installed Lotus Notes 6.5 on my PC (Win XP Pro SP3).  Have no problems receiving email ... just cannot send.  I keep getting same error msg:
"SMTP Protocol returned a permanent error.  Failed with outgoing.verizon.net"
Does anyone have a solution?
Solved!
Go to Solution.

Make sure that you have the outgoing server, outgoing.verizon.net as an authenticated server.  You will need your Verizon Online username and password.  The Verizon Online username/password is set up differently than FiOS - I didn't get one of these accounts until I called and requested one.
http://www22.verizon.com/ResidentialHelp/FiOSInternet/Email/Troubleshooting/QuestionsOne/85681.htm

Similar Messages

  • Any way to just send outgoing mail via gmail, not get incoming?

    Hey guys,
    I currently use the Gmail app because I get a lot of junk mail on there and I rather not have my blackberry filled with gmail messages. Therefore, I just use my school email address since all those emails are important.
    I do send out a lot of emails from my phone and I would like to use my gmail address to do that instead of my school address.
    So......is there any way I can hook up my gmail to the push account, but only send emails from it? I don't want to be receiving emails from my gmail account. I use the gmail app for that since it keeps it more "clean" since gmail groups emails together like threaded SMS
    Thanks guys

    You can either set those two conditions by adding a filter. Or when you first go into Filters, there's a section that says "When no filters apply". You can set that to Do not forwards messages to device
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • Send mail via Lotus Notes R5

    Does anyone have any examples of sending e-mail through Lotus Notes via forms 6i?
    I have searched the forum and there seems to be very few items on Lotus Notes.
    Thanks in advance.
    Lakmal

    Fainaly I found the way.. here is the coding
    PROCEDURE send_email(p_recipient_in IN VARCHAR2,
    p_copy_to_in IN VARCHAR2,
    p_blind_copy_to_in IN VARCHAR2,
    p_subject_in IN VARCHAR2,
    p_text_in IN VARCHAR2,
    p_return_receipt_in IN VARCHAR2,
    p_no_of_attachments IN NUMBER DEFAULT 0,
    p_mood_stamp_in IN VARCHAR2,
    p_view_icon_in IN NUMBER) IS
    -- Local Variable Declaration
    lv_args ole2.list_type;
    lv_db ole2.obj_type;
    lv_doc ole2.obj_type;
    lv_return_receipt VARCHAR2(1);
    lv_session ole2.obj_type;
    lv_attach1 ole2.obj_type;
    lv_attach2 ole2.obj_type;
    lv_mailserver VARCHAR2(200) := 'ew-cmb';
    lv_sqlerrm VARCHAR2(255);
    BEGIN
         lv_session := ole2.Create_Obj('Notes.NotesSession');
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, lv_mailserver); -- Mail Server
         ole2.Add_Arg(lv_args, 'names.nsf'); -- Mail File
         ole2.Add_Arg(lv_args, 'mail\Lakmal_M.nsf'); Mail File
         lv_db := ole2.Invoke_Obj(lv_session, 'GetDatabase', lv_args);
         ole2.Destroy_Arglist(lv_args);
         lv_doc := ole2.Invoke_Obj(lv_db, 'CreateDocument',lv_args);
         ole2.Set_Property(lv_doc, 'SendTo', p_recipient_in);
    If (p_copy_to_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'CopyTo', p_copy_to_in);
    End If;
    If (p_blind_copy_to_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'BlindCopyTo', p_blind_copy_to_in);
    End If;
    -- Guidelines for mood stamp as to what argument values should be passed
    -- ''- Normal
    -- P - Personal
    -- C - Confidential
    -- R - Private
    -- F - Flame
    -- Q - Question
    -- G - Good Job!
    -- M - Reminder
    -- J - Joke
    -- T - Thank You!
    If (p_mood_stamp_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'SenderTag', p_mood_stamp_in);
    End If;
    If (p_subject_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'Subject', p_subject_in);
    End If;
    If (p_text_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, 'Body', p_text_in);
    End IF;
    --To embed attachments add the following lines to code immediately after
    -- setting the 'Body' property :
    If (nvl(p_no_of_attachments,0) = 0) then -- No attachments
         null;
    Else
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, 'Attachments');
         lv_attach1 := ole2.Invoke_Obj(lv_doc, 'CreateRichTextItem', lv_args);
         ole2.Destroy_Arglist(lv_args);
         lv_args := ole2.Create_Arglist;
         ole2.Add_Arg(lv_args, 1454);
         ole2.Add_Arg(lv_args, '');
         Ole2.Add_Arg(lv_args, 'C:\Install.log');
         lv_attach2 := ole2.Invoke_Obj(lv_attach1,'EMBEDOBJECT', lv_args);
    End If;
    -- 1-Return Receipt
    -- 0-No Return Receipt
    lv_return_receipt := TRANSLATE(NVL(UPPER(p_return_receipt_in), 'N'), ' NY', '001');
    ole2.Set_Property(lv_doc, 'ReturnReceipt', lv_return_receipt);
    If (lv_return_receipt = '1') then
         ole2.Set_Property(lv_doc, 'DeliveryReport', 'B');
    End If;
    -- The following values can be used to set the icon that appears to the left
    -- of the senders name.
    -- 0 - none
    -- 10 - finger with ribbon
    -- 23 - newspaper
    -- 74 - flame
    -- 83 - thumbs up
    -- 85 - happy face
    -- 133 - envelope
    -- 159 - star
    -- 162 - question mark
    -- 163 - investigator
    -- 166 - glasses
    -- 169 - red circle
    -- 170 - gold circle
    If (p_view_icon_in IS NOT NULL) then
         ole2.Set_Property(lv_doc, '_ViewIcon', p_view_icon_in);
    End If;
    ole2.Destroy_Arglist(lv_args);
    lv_args := ole2.Create_Arglist;
    ole2.Add_Arg(lv_args, 0);
    ole2.Invoke(lv_doc, 'Send', lv_args);
    ole2.Destroy_Arglist(lv_args);
    ole2.Release_Obj(lv_session);
    ole2.Release_Obj(lv_db);
    ole2.Release_Obj(lv_doc);
    EXCEPTION
         WHEN OTHERS THEN
         lv_sqlerrm := substr(sqlerrm,1,255);
         Message('Unable to send mail to ' || p_recipient_in);
         Message('Unable to send mail to ' || p_recipient_in);
         Message('Error is : '||lv_sqlerrm);
         Message('Error is : '||lv_sqlerrm);
         Set_Application_Property(CURSOR_STYLE, 'DEFAULT');
         RAISE;
    END;

  • I cannot send outgoing mail because it is rejected by the server because it doent allow relaying

    I cannot send outgoing mail because it is rejected by the server because it doent allow relaying

    Go into Settings>Mail, Contacts, Calendars>your account>Outgoing mail Server SMTP>Primary Server then turn Server ON and fill in both User Name +Password under Outgoing Mail Server.

  • HOWTO: send a mail through Lotus notes by Java Code

    Dear All,
    I have requirement with me, where i have to write a java code which will send a mail from lotus notes .
    Could you please provide me sample source code and different options for implementing this .

    Generally, whatever program you use to read mail, it will ultimately be sent by a "Mail Transfer Agent" which understand SMTP. I've got Lotus Notes here as my mail reader, but when my programs send mail they use java mail, and send the mail as SMTP using the appropriate mail server (sometimes called the "smart host"). It the mail is for my mailbox the MTA then forwards it to the Lotus Notes mail store.

  • How to send a mail to Lotus Notes R5 from Report Builder 3.0.5.8.0 ?

    Dear sir,
    I try to send a mail via Report Builder, and I got the following error message:
    REP-4201:Error occured while initialzing the mail subsystem.
    REP-4202:There is the problem with
    the mail System.
    We use the Lotus Notes R5 mail, not Microsoft Outlook or exchange. Could the Report Builder support it?
    Thanks.
    Lisa

    Hi!
    1. Make sure no one else has opened the same file.
    2. Dont put image on your report.
    later
    Mircea Paciu (guest) wrote:
    : In Report builder 3.0.5.8.0 I can't open some of my *.rdf
    files.
    : When trying to open no error message is generated and the "open
    : dialog" reappears.
    : Some other files can be normally open.
    : Does anyone know how to solve this?
    null

  • CANNOT SEND OUTGOING MAILS FROM HOM

    i am unable to send outgoing mails with my computer from home and other few locations. However, in other places such as public libraries, coffe shops, apple stores etc the outgoing mail works perfectly. does anybody know where the problem can be? i work from home and is getting me out of my nerves. Thank you for the help

    Does web mail work?
    Have you checked the outgoing mail server settings?
    That's the smtp address of your internet provider.
    You may need to change the outgoing mail server for each location.

  • Send mails via Lotus Notes using VFP

    Hi all,
    I have an VFP application which is allowing send emails from Lotus Notes. Currently it sends mails from the default account in Lotus notes. But now there is a requirement as follows.
    An email address can be defined from our application. Say
    [email protected] Lotus notes has been configured with two mail accounts such as
    [email protected] and [email protected] and the default email is
    [email protected] Now we have to send emails from our application with
    [email protected] email address. Not the default email address.
    To do this we have to read all email accounts configured in Lotus Notes using VFP. And look for the email address
    [email protected] and mail should be sent with that account. Can anybody guide me how to do this using VFP? Thanks.
    Best Regards,

    This is actually a Notes question. You need to find out whether the Notes automation server provides what you need and how to do it.
    Tamar

  • Cannot Send in Mail : server does not support authentication

    I can receive mail, but cannot send. The error message I'm getting is: The SMTP server "smtp-server.rochester.rr.com" doesn't support authentication." I have Time Warner Road Runner. The settings for the outgoing server are as follows:
    server: smtp-server.rochester.rr.com
    port: 25
    SSL: no
    Authentication : Password
    The username and password work fine with Webmail or mail2web
    Please help!

    I had a similar message from Road Runner and when I turned authentication off, I got the following message: "This message could not be delivered because your SMTP settings are not set." Suggestions?

  • Cannot send outgoing mail in gmail

    I need help. The last couple weeks I have not been able to send email out on my gmail account. I have no probs with yahoo just gmail. I get the message: Cannot Send Mail The connection to the outgoing server smpt.gmail.com has failded. I have no idea what to do.

    I have a POP email issue. for some reason, my outgoing work email "[email protected]" gets sent out as "[email protected]". I do not know why my phone is shortening the domain. I am able to send & receive fine, but you cannot reply to my email because the domain changes. I have checked all the fields and they are correct. I've reset and recreated the account and it still happend. I've also used both att smpt serve and my work smpt server but they both do the same thing. i've had this setup on my old phone and it worked fine - just won't work on iphone.

  • I cannot send outgoing mail on my iphone keeps saying it needs pass word then says it is wrong and it isnt set up like on ipad

    it says cant send mail  user name or password for smtp and some weird email address says name @smtp.live.com is wrong  help please

    more specific it says it cannot communicate with the outgoing mail server.

  • I cannot send outgoing mail

    I live in Hong Kong , but have a BTInternet e-mail .
    I have set up my mail account and changed the SMTP server to the netvigator address I use on my MBP and my Mac Pro.
    I have set it up by syncing it with my laptop , I then deleted thataccount and set-it up using the Yahoo setting on the I-Pad , I then deleted that and set it up manually . The latter sometimes works but does not have all the mailboxes such as Trash , Drafts , etc .
    However , in general...I cannot send mail.

    I have tried all of these and none of it has worked .
    When I set an account up manually , without using the Yahoo ( BtInternet )short cut , it sets up an account with only an in-box.
    When I sync to the MBP it doesnt't send mail , although I hear the swoosh, there is never a mail in the sent box .
    When I set up manually , using the Yahoo shortcut , it also seems to send , but actually does not do anything other than make the sound.
    I have deleted all the mails and re-set up , using all three methods but to no avail.

  • Verizon email cannot send outgoing mail. Works OK with Internet Explorer. Fix?

    Can login to Verizon email. I receive incoming email however I cannot send email. The SEND button appears not to work. Have upgraded all plugins. Works OK on Internet Explorer browser. Upgraded Flash and Java but still does not work.

    Hello,
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • TS3276 i suddenly cannot send any mail via my imac please help

    i am unable to send any mail using apple mail. i have checked the all the settings and it seems to be correct. please help

    Here's a troubleshooting article from Apple:  iOS: Troubleshooting Mail
    It doesn't seem to cover your specific issue, but have you tried using a different network (either a different wi-fi network, or switching from wi-fi to cellular or vice-versa if you have a wi-fi+cellular iPad)?
    For GMail, iCloud and Yahoo, copies of messages are stored on their respective servers, so you could try deleting the account on your iPad, then re-adding each account one at a time to see if that resolves the issue.

  • When trying to send mail via Lotus Notes webmail, mail does not get send

    Firefox 4.01, XUL-manager installed.
    Logged in to corporate webmail, can see mails etc. I can create a mail (new, reply, etc.) but when I hit the send button, I get a popup asking if a copy needs to be archived. no matter if I say yes or no, the mail does not get send. Also saving as draft does not work.

    Hi,
    yes smtp is a standard and I think you could use this with almost every smtp server.
    If your smtp server doesn't require authentication you can access it without an authenticator
    I think...
    Best regards,
    Jens

Maybe you are looking for