Send email using Orchestrator email object

We encounter intermittent issues while sending email using the Orchestrator email object. We've tried supplying values (anonymous/anonymous) for SMTP authentication, but this doesn't help. Is
there a beta fix available for this error? Is there a
workaround other than what is specified?<o:p></o:p>
Error Details:
Error sending e-mail.  Exception in sending email: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.1 Client was not authenticated
   at System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode, String response)
   at System.Net.Mail.MailCommand.Send(SmtpConnection conn, Byte[] command, String from)
   at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException& exception)
   at System.Net.Mail.SmtpClient.Send(MailMessage message)
   at SendEmail.Send(SendEmail* )

I had this  message also when you do not specify a seperate account for authentication and use the service account instead.
I suggest to make a seperate service account for mailing from orchestrator and set the credentials in smtp authentication. make sure to give this account a mailbox on his own OR give it the 'send as' rights on another mailbox and set the mailaddress
as the send adres. (note: make sure you use the send as rights and not the send on behalf rights, as this doesn't work, also do not use both the send as AND the send on behalf permission at the same time.)
when setting the send as permission take note that in exchange this default can take up to 2 hours to be effective.
regards,
Louis

Similar Messages

  • How to reject emails using address email's sender

    Hi,
    I'm wondering if it's possible to reject emails using address email's sender.
    Thanks,

    sorry, I thought it was one of the built in options. you can do it with an apple script rule then.
    paste the following into a blank Applescript Editor window . Applescript Editor is located in /Applications/Utilities
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    using terms from application "Mail"
    on perform mail action with messages selectedMsgs
    repeat with msg in selectedMsgs
    tell application "Mail"
    bounce msg
    end tell
    end repeat
    end perform mail action with messages
    end using terms from</pre>
    save the script somewhere and set your Mail rule to run this script on messages from that sender.

  • "Unable to send mail" using Verizon email account

    No matter what I try, my Incredible will not send an email using my Verizon email account. I receive emails but cannot send. I've verified the account settings numerous times and the verifications always work. But I still get the "Unable to send mail" message. Initially I thought it was the port but I've tried both 25 and 587. Neither work. I know I've sent messages before but it's been a while. Anyone have any ideas?

    I tried SSL with 25 and 587 (Verizon recommendation). Still no go.
    BTW, there isn't any way to save the Mail size limit and Download options is there. Every time I go thru this I have to go back and set these up again.
    Thanks again for your help.

  • How did someone send an email using my email address to others without my knowledge?

    Recently someone said I sent an email out to their friends.  I have a MacBook Pro.  How could this happen?

    It is likely that someone else's computer was used, your address was found in their address book and the spammer "spoofed" your email address.
    Email spoofing

  • How I can send emails using the client object model?

    I have tried this, but I always get an exception with error message "A recipient must be specified.":
    string webUrl = "http://sharepoint.example.com/";
    EmailProperties properties = new EmailProperties();
    properties.To = new string[] { "[email protected]" };
    properties.Subject = "Test subject";
    properties.Body = "Test body";
    ClientContext context = new ClientContext(webUrl);
    Utility.SendEmail(context, properties);
    context.ExecuteQuery(); // ServerException thrown here
    context.Dispose();
    Server stack trace:
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.SharePoint.Utilities.SPUtility.SendEmail_Client(EmailProperties properties)
    at Microsoft.SharePoint.ServerStub.Utilities.SPUtilityServerStub.InvokeStaticMethod(String methodName, XmlNodeList xmlargs, ProxyContext proxyContext, Boolean& isVoid)
    at Microsoft.SharePoint.Client.ServerStub.InvokeStaticMethodWithMonitoredScope(String methodName, XmlNodeList args, ProxyContext proxyContext, Boolean& isVoid)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.InvokeStaticMethod(String typeId, String methodName, XmlNodeList xmlargs, Boolean& isVoid)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.ProcessStaticMethod(XmlElement xe)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.ProcessOne(XmlElement xe)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.ProcessStatements(XmlNode xe)
    at Microsoft.SharePoint.Client.ClientMethodsProcessor.Process()
    msdn link: http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.utilities.utility.sendemail.aspx

    hi
    if you will check the code of SendEmail_Client(EmailProperties properties), you will find that it may only send emails to internal users. May be it was made intentionally in order to prevent spamming from client code. So let's see:
    internal static void SendEmail_Client(EmailProperties properties)
    if (properties.To.Count == 0)
    throw new SPException(SPResource.GetString(web.LanguageCulture, "SendEmailInvalidRecipients", new object[0]));
    AddressReader func = null;
    using (MailMessage mm = new MailMessage())
    func = delegate (MailAddress a) {
    mm.To.Add(a);
    ResolveAddressesForEmail(web, properties.To, func);
    new SmtpClient(SPAdministrationWebApplication.Local.OutboundMailServiceInstance.Server.Address).Send(mm);
    I.e. it adds recipient in ResolveAddressesForEmail() method. Now let's check this method:
    private static void ResolveAddressesForEmail(SPWeb web, IEnumerable<string> addresses, AddressReader func)
    if (addresses != null)
    foreach (string str in addresses)
    if (string.IsNullOrEmpty(str))
    continue;
    SPPrincipalInfo info = ResolvePrincipal(web, str, SPPrincipalType.All, SPPrincipalSource.All, null, false);
    if ((info != null) && (info.PrincipalId > 0))
    if (!string.IsNullOrEmpty(info.Email))
    try
    func(new MailAddress(info.Email, (info.DisplayName != null) ? info.DisplayName : "", Encoding.UTF8));
    catch (FormatException)
    continue;
    if ((string.IsNullOrEmpty(info.Email) && info.IsSharePointGroup) && web.DoesUserHavePermissions(SPBasePermissions.BrowseUserInfo))
    SPGroup byNameNoThrow = web.SiteGroups.GetByNameNoThrow(info.LoginName);
    if (byNameNoThrow == null)
    continue;
    foreach (SPUser user in byNameNoThrow.Users)
    if (!string.IsNullOrEmpty(user.Email))
    try
    func(new MailAddress(user.Email, (user.Name != null) ? user.Name : "", Encoding.UTF8));
    continue;
    catch (FormatException)
    continue;
    continue;
    I.e. at first it tries to resolve user using ResolvePrincipal() method. If it is not resolved (info == null) email is not sent. But if it is - it first checks that email is not empty. If it is not - it adds email to the MailMessage.To recipients list. If
    it is empty it checks whether the principal info represents Sharepoint group. If yes - it will send email to each member of the group.
    So it may be so that you try to send email to external user (which is not supported according to the code above), or resolved principal doesn't have email specified.
    Blog - http://sadomovalex.blogspot.com
    CAML via C# - http://camlex.codeplex.com

  • Send HTML email using OSB email transport

    Hi all
    The client we are working for has a specific email template (HTML based) in which emails need to be send. I have tried using the HTML tags to frame this email string, but when I open the email in outlook, I can see the tags as it is. Tags like <p> <br> are not recognised as HTML rather taken as normal strings.
    Pls help in framing an HTML based email message using OSB. Thanks

    Hi Anuj
    Thanks again! You are a life savior. Actually i did check the blog, but the author was modifying http headers in the blog using $outbound variable directly using xpath. So, i just wanted to clarify, if using transport headers for outbound request for email protocol would do the job.
    I will check and post back the results. I am currently struggling with OSB and Log4j java callout. I am getting weird logs from OSB server in my interface specific log.

  • I am getting bulk junk mail and the sender is using my email address. How do I stop it?

    They do not come into my main account, only through Thunderbird. I email myself sometimes, so I cannot make a filter to block myself.

    In most cases, someone has acquired your email address and is simply pasting it into the "From:" box when he builds and transmits his spam messages. He hasn't "hacked" your account, and he isn't sending from any equipment you have any control over. Changing passwords almost always has zero effect, since he isn't logging in as you. Have you ever found any of these messages in your Sent folder?
    You started a thread, then posted a reply in a separate thread. It's easy enough when you get an email notification of a reply to your thread, as the link in the email will bring you straight here.
    If you want to add to your own thread, look in your "profile" here on this forum to find a list of your previous postings. Or bookmark your thread in your browser.
    John99 has simply joined your two threads together to help anyone trying to help you.
    Since you have no control over what any 3rd party does on his own computer (or more likely, an "owned" or hijacked computer) you can't stop him.
    Anyway, why bother with a filter if the bad messages are being placed into Bulk or Spam? Your email provider's anti-spam system would appear to be doing its job. And if they aren't labelled as Spam or Junk, don't be afraid to do so yourself. Good spam and junk filtering is bit more sophisticated than just looking at the ostensible "From:" address; it will also be looking at IP addresses and checking against blacklists for known spam sources, and using heuristics to identify patterns.
    Plus what finitarry said. ;-)

  • Problem sending email using Verizon email account in iPhone

    I am having the exact problem as in this archived thread:
    http://discussions.apple.com/thread.jspa?threadID=1266840
    I get an error:
    "Cannot Send Mail, the sender address was invalid."
    I am using an original iPhone with the latest software. I believe the problem started with the 2.0 or 2.1 update.
    Even before coming here, I had noticed that the authentication under advanced was set to "MD5 Challange-response" rather than "password".
    No matter how many times I change to "password" it doesn't stick, and of course the mail does not send.
    How can I get the correct setting to stick, or am I doing something else wrong?

    Thanks for the response. I see based on your response that I had not been changing the outgoing method of authentication.
    I found the outgoing mail authentication where you said it would be.
    I have the same problem though, I can change it from "MD5 Challange-response" to Password, but the change does not "stick".
    As soon as I leave the "page" and go back to it, the authentication has changed back to "MD5 Challange-response".
    I checked my friends iPhone 3g (I have an original with the latest software) who also has verizon, and his phone is set to password.
    On his smtp server page, authentication shows as "password" without even clicking on "authentication". My smtp page shows nothing next to authentication, I need to click on that to go to the next page to then see it has switched back to "MD5 Challange-response".
    Another oddity is his phone lists server port as 25, mine lists as 587. I tried changing mine to 25, but nothing changed, my authentication would not "stick" at password, and outgoing mail still did not send.
    Any help appreciated as sending e-mail from the phone is very important to me.

  • How to add hyperlink to file path of pdf when creating email using the email submit button?

    I have a form with an e-mail submit button that opens an outlook email with the .pdf file as an attachmnet, and addressed to the e-mail addresses i put in tthe address field.
    What we are trying to abvoid is sending a bunch of attchement to numerous people, clogging up email space/server space.
    What we would like is not to have the .pdf attched, but rather in the body of the email have a hyperlink to the path of the document. Can this be done, and if so can anyone give me some guidance.
    Thanks in advance
    Ron

    Then you can use something like this:
    app.mailMsg({ bUI: true, cTo: "[email protected]", cSubject: "You can find the file at: " + this.path });
    The path that will be inserted is a so-called "device-independent path", though, so they may not be able to use it directly.
    It's possible to convert it to a "normal" file path, but that is a more complex scripting task.

  • Unable to view older emails using native email cli...

    I would be grateful for some help.  I use my inbox to store messages until I have acted on them.  The native email client on my E55 will not keep messages older than a month.  Is there a work around or another email programme that someone can recommend to me?  This was not the case with my E71 and is certainly not the case with any other email client I run on an iPod touch or computer.  Thanks.  John

    What is different about these particular emails, and what types of files can it not show?
    Changing email app won't help if the emails contain attachments the iPhone itself cannot view.

  • Cannot add PDF to email-using Yahoo Email

    I use email Rocketmail(yahoo product) I am unable to attach PDFs to my outgoing emails, also use Nortons 360-virus/firewall.
    Thank you

    Could you describe the steps and where it is failing? For example, you can click a browse button to look for files, you can see the PDF files, you can choose a file and click the button, but the file doesn't actually attach? Et cetera.
    Can you attach other types of documents without a problem, or are multiple kinds of attachments affected?

  • My font size changed in Firefox when trying to read email using yahoo email. I now have to use explorer to read my mail. can you tell me how to return back to the readable size font. thank you

    I have been using firefox for years to read my email. recently the size of text became small and hard to read. I would like to get the text size large again, so I don't have to use the other browser. I have a att yahoo email account and subscribe to at&t uverse for internet service.

    I tried both of your suggestions and neither one worked. I found the solution by clicking on the "View" button, then "Reset". This put my email back to the original font/text size. Somehow the screen had been Zoomed in, so to change it, follow the instructions above.

  • How to use Yahoo Mail to send email using email links on webpages

    When I'm on a webpage that has a link to send an email, I cut and paste the the email address (which is the link) and paste it into my Yahoo Mail address bar. However, some webpages don't show the email address as a link. Instead, the link might be "write me" or "send mail", so I can't cut and paste an address.
    If I click on an email link, a window pops up that says "Welcome to Mail" and it states that the assistant will guide me through the steps to configure my email account. To get started, this assistant requires a password that I don't possess.
    So I'm stuck not being able to access an email application that I don't want to use in the first place.
    Is there a way to set up my computer so that I could click an email link on a webpage and have Yahoo Mail pop up?
    If not, is there at least a way to send an email using an email link that doesn't show the email address, without using (what I assume to be) the Apple mail Application? If it is necessary, how do I recover the password for the mail assistant? I'm not aware of ever having used or set up a password before.
    THANK YOU

    If you don't want Mail to open, don't click on the app.  If it's opening at login, right click its Dock icon>Option>de-select Open at Login.

  • I cannot send a big pond email to another big pond address using Apple Mail

    I cannot send an email using my  Email address with my provider bigpond to another bigpond user.

    Can you send/receive and e-mail to yourself?
    What happens when you try to send an e-mail to another bigpond user?

  • 8.1.1 upgrade don't send iMessage using my phone, only my email!

    Since I updated to 8.1.1 my iMessage has not worked properly. It only sends iMessage using my email instead of my phone number! Can somebody help me fix this? I already reset my phone completely and still not working.

    SSame here. Just spent 1 hour and 20 minutes on phone with Apple support and they can't fix it so far.  I can send iMessages sometimes,  but I cannot receive them. I can send messages sent as regular text messages.  Also can receive texts.  What's app works fine.   Only iMessage is not working.  Did everything the support person could think of short of a full reset and back up from my pic (phone ran out of battery).  Any ideas?
    they did say the diagnostic wasn't quite right and that a New York times app was not running correctly.  Deleted that app.  Didn't help either. 

Maybe you are looking for

  • Delete/Unassign Resource Request Xml ?

    What is the request xml to delete the resource from ACS4 ? Currently there is no xml request is generated in "Web service API Inspector" of ACS4. Also same for delete(unassign) resource from distributor resources? Can anyhone help?

  • X Series Tablets Shipping discussion (2012-2013)

    All, Post your shipping and order management experiences here. Here are some common points of frequent discussion: How to get a system fast: Buy an in-stock standard configuration from Lenovo or a Lenovo Partner in your area. Customized systems take

  • Website is blank

    I have a favorite website that I have used for years to look up information. Using my Powerbook G4, Safari appears to open the URL, but the page is blank. My trusty computer is running fine. All other websites browse easily. I have emptied the cache,

  • Apple Remote Now Not Working With MacPro

    I've a MacPro (Late 2007) and it came with an Apple Remote. I've used it quite frequently with this computer, but haven't used it for a couple of months. I recently needed to start using it once again but the computer no longer responds to the remote

  • Installation of PI + EP 7.3

    Hi Experts, We have installed and configured SAP PI 7.3 on WIN 2008 + MSQ. Is it possible to install NetWeaver Portal 7.3 on this? If yes, can you please guide us. I read SDN forums, that NetWeaver portal can be installed with NWDS in CE env., howeve