To send a Task though Email

Hi Experts,
I have a requirement where in i have to send Outlook Express task through Email. I am able to do this for appointment and meeting . I am downloading the appointment and task as VCS  file from outlook express. i am converting this file data into Hexa data and sending this by FM SO_DOCUMENT_SEND_API1.
  I am not able to download the task as VCS file. I am downloading the task as MSG format. I am not getting any scope on the data which i have in MSG format.
Could any one Please suggest a solution for sending  task  through Email.
Thanks & Regards,
Jeswanth Kadali

Hello,
Could you send me the abap code that send an appointement to Outlook please
Thanks.

Similar Messages

  • SD billing documents send to Customer though EMAIL.

    Dear All,
    We want to send SD Billing documents to Customers through EMAIL. For that we have created new output type ZMAL and done the determination procedure for output type. Also we have maintained Customer Codes with Sales Org. in VV31. But when we raise the Invoice, output type should be come automatically (ZMAL) but it's won't come.
    Please guide us what Config/Setting is missing or provide us all steps to be follow, so we can check and make correction.
    Please help.
    Thanks
    Prashant

    Hi,
    In Configuration of Output type maintain in the Default values tab
    Dispatch time 4
    Transmission Medium 5
    Partner Function CP
    Communication strategy CS01
    Another option might be to maintain Contact Person(s) for the Customer and enable the form for that Partner.
    Maintain customer as the contact person and email address in General data of customer master.Also trigger the partner during the Billing.
    Also ensure that the output type will be triggered automatically once it is released to accounting.There is a routine in O/P determination procedure.
    Regards,

  • Sending Status Messages by Email

    I am using Status Filter Rules to send warning and error messages via email from several CM07 sites. The process hasn't been consistent.
    Messages created by the SMS_Distribution_Manager do not send the entire description field where other components do. I have not been able to figure it out.
    I have tried using vbscript and powershell, both give the same results.
    Here is what I am doing for distribution manager emails via vbscript.
    cscript.exe "C:\Scripts\sendMail.vbs" "myemailaaddress" "%msgdesc"
    SendMail.vbs contents:
    Const SMTPServer = "IP Address of SMTP Server" ' SMTP server IP address
    Const From = "From Address"
    Const Subject = "SCCM Package Alert"
    Set objArgs = WScript.Arguments
    If objArgs.count < 2 Then
     ' All arguments are required
     WScript.Quit(1)
    Else
     SendGenericMail objArgs(0), objArgs(1)
    End If
    Sub SendGenericMail (sTo, sMessage)
     On Error Resume Next
     ' Generate TO and CC recipients based on number of e-mail addresses provided.
     If instr(sTo,";") > 1 Then
      sTo_array = Split(sTo,";")
      kokku = UBound(sTo_array)
      For i = 1 to kokku
       If i <> kokku Then
        CCstring = CCstring & sTo_array(i) & ", "
       Else
        CCstring = CCstring & sTo_array(i)
       End If
      Next
      TOstring = sTo_array(0)
     Else
      TOstring = trim(sTo)
     End If
     Set CDO = WScript.CreateObject("CDO.Message")
     CDO.From = From
     CDO.To = TOstring
     CDO.Cc = CCstring
     CDO.Subject = Subject
     CDO.TextBody = sMessage
     CDO.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = SMTPServer
     CDO.Configuration.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
     CDO.Configuration.Fields.Update
     CDO.Send
    End Sub
    Here is an example of the email body then the full message detail.
    Email Body:
    SMS Distribution Manager failed to process package Law
    Here is the full message detail:
    SMS Distribution Manager failed to process package "Law Civil Image" (package ID = DIT007A9).
    Possible cause: Distribution manager does not have access to either the package source directory or the distribution point.
    Solution: Verify that distribution manager can access the package source directory/distribution point.
    Possible cause: The package source directory contains files with long file names and the total length of the path exceeds the maximum length supported by the operating system.
    Solution: Reduce the number of folders defined for the package, shorten the filename, or consider bundling the files using a compression utility.
    Possible cause: There is not enough disk space available on the site server computer or the distribution point.
    Solution: Verify that there is enough free disk space available on the site server computer and on the distribution point.
    Possible cause: The package source directory contains files that might be in use by an active process.
    Solution: Close any processes that maybe using files in the source directory.  If this failure persists, create an alternate copy of the source directory and update the package source to point to it.
    Email messages from other component sources have the complete description field.
    Can someone tell me what I am doing wrong or what I might be missing?
    Thanks,
    Steve

    Hi,
    You may refer to the following links to check if they help:
    Sending SCCM Status Messages from MDT Scripts.
    Send SCCM task sequence email report
    Regards,
    Sabrina

  • [Forum FAQ] How do I send multiple rows returned by Execute SQL Task as Email content in SQL Server Integration Services?

    Question:
    There is a scenario that users want to send multiple rows returned by Execute SQL Task as Email content to send to someone. With Execute SQL Task, the Full result set is used when the query returns multiple rows, it must map to a variable of the Object data
    type, then the return result is a rowset object, so we cannot directly send the result variable as Email content. Is there a way that we can extract the table row values that are stored in the Object variable as Email content to send to someone?
    Answer:
    To achieve this requirement, we can use a Foreach Loop container to extract the table row values that are stored in the Object variable into package variables, then use a Script Task to write the data stored in packages variables to a variable, and then set
    the variable as MessageSource in the Send Mail Task. 
    Add four variables in the package as below:
    Double-click the Execute SQL Task to open the Execute SQL Task Editor, then change the ResultSet property to “Full result set”. Assuming that the SQL Statement like below:
    SELECT   Category, CntRecords
    FROM         [table_name]
    In the Result Set pane, add a result like below (please note that we must use 0 as the result set name when the result set type is Full result set):
    Drag a Foreach Loop Container connects to the Execute SQL Task. 
    Double-click the Foreach Loop Container to open the Foreach Loop Editor, in the Collection tab, change the Enumerator to Foreach ADO Enumerator, then select User:result as ADO object source variable.
    Click the Variable Mappings pane, add two Variables as below:
    Drag a Script Task within the Foreach Loop Container.
    The C# code that can be used only in SSIS 2008 and above in Script Task as below:
    public void Main()
       // TODO: Add your code here
                Variables varCollection = null;
                string message = string.Empty;
                Dts.VariableDispenser.LockForWrite("User::Message");
                Dts.VariableDispenser.LockForWrite("User::Category");
                Dts.VariableDispenser.LockForWrite("User::CntRecords");     
                Dts.VariableDispenser.GetVariables(ref varCollection);
                //Format the query result with tab delimiters
                message = string.Format("{0}\t{1}\n",
                                            varCollection["User::Category"].Value,
                                            varCollection["User::CntRecords"].Value
               varCollection["User::Message"].Value = varCollection["User::Message"].Value + message;   
               Dts.TaskResult = (int)ScriptResults.Success;
    The VB code that can be used only in SSIS 2005 and above in Script Task as below, please note that in SSIS 2005, we should
    change PrecompileScriptIntoBinaryCode property to False and Run64BitRuntime property to False
    Public Sub Main()
            ' Add your code here
            Dim varCollection As Variables = Nothing
            Dim message As String = String.Empty
            Dts.VariableDispenser.LockForWrite("User::Message")
            Dts.VariableDispenser.LockForWrite("User::Category")
            Dts.VariableDispenser.LockForWrite("User::CntRecords")
            Dts.VariableDispenser.GetVariables(varCollection)
            'Format the query result with tab delimiters
            message = String.Format("{0}" & vbTab & "{1}" & vbLf, varCollection("User::Category").Value, varCollection("User::CntRecords").Value)
            varCollection("User::Message").Value = DirectCast(varCollection("User::Message").Value,String) + message
            Dts.TaskResult = ScriptResults.Success
    End Sub
    Drag Send Mail Task to Control Flow pane and connect it to Foreach Loop Container.
    Double-click the Send Mail Task to specify the appropriate settings, then in the Expressions tab, use the Message variable as the MessageSource Property as below:
    The final design surface like below:
    References:
    Result Sets in the Execute SQL Task
    Applies to:
    Integration Services 2005
    Integration Services 2008
    Integration Services 2008 R2
    Integration Services 2012
    Integration Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • When trying to send a photo via email, I am prompted to setup an email account even though email is already setup.  What would cause this?

    when trying to send a photo via email, I am prompted to setup an email account even though email is already setup.  What would cause this?  Better yet, how do I fix it?

    I have checked this on my device.  I see a Default account under Messages created outside of Mail will be sent from the default account.  There is an account selected, though it does not show my exchnage account.  If it is only an exchange accout, can that not be used for this?

  • OIM 11g: send direct link to approval tasks in email notification

    Hi all!
    What do I want to achieve: I want to send email notification to assignee in case if some approval task in OIM has assigned to them and this notification must have a direct link to the page of approval task details from which assignee can approve or reject an approval task.
    The default email notification that exists in approval task “DefaultRoleApproval” has a direct link to a request details page:
    <a href="<%substring-before(/task:task/task:payload/task:url , "/workflowservice/CallbackService")%">/oim/faces/pages/Self.jspx?OP_TYPE=LOOKUP&E_TYPE=MY_REQUEST&T_ID=<%/task:task/task:payload/task:RequestID%>>
    But unfortunately from this page we can’t do any action such as reject or approve.
    To find a direct link to an approval task details page (Self Service -> Tasks -> Task Details: Approval) from which I can perform needed operation I used document ID 748447.1. But I haven’t found a direct link.
    What is the direct link to task details page for approval with exact ID which I can include in an email to satisfy my requirement?
    Thanks in advance!</a>

    If at all you cannot get the direct link for approve/reject then try the actionable email from SOA. Once you have that configured the emails gets approver/reject links so that approvers can directly approve/reject the task from email. If that works for you then you can look at the format of those links in the email and deduce what you need the url as.
    HTH,
    BB

  • Can send but not retrieve emails using Thunderbird and Windows 8.1

    Hi, I am not able to get Thunderbird to retrieve emails on a new laptop.
    Last week I purchased a new laptop due to an imminent hard disk failure on my old laptop. I will call them "Old" and "New" laptops. (Old laptop is still working for the moment...)
    The Old laptop is nearly 3 years old, and I have been using Thunderbird on it since new without any problems.
    I have downloaded and installed Thunderbird on the New laptop, and can not get it to retrieve emails.
    As the Old laptop is still working (at the moment), I am able to directly visually compare and check settings on both computers.
    THE PROBLEM
    Using Thunderbird on the New laptop, I am able to send emails, I can see all my old emails restored from the Old laptop using Mozbackup, but clicking Get Mail on the New laptop does not retrieve new
    emails.
    When I click Get Mail, the status message in the bottom left corner says "connected to .....<ISP>..." but does not actually get the emails. However, the Old laptop is still able to get emails as it always has.
    My ISP is a large Australian telco that I have used for many years and I have not changed anything with my account. The ISP is POP3.
    WHAT HAVE I TRIED
    I deleted the email account created by restoring from Mozbackup, and attempted using the Thunderbird new account wizard, however Thunderbird did not recognise my ISP and would not create the account - even though it is working perfectly at the same time on the Old laptop.
    All Firewalls I can find have been configured to allow Thunderbird, with the same configuration settings on both machines.
    How do I know I can send but not Get emails from Thunderbird on the New laptop?
    I have sent test emails to myself from the New laptop. Thunderbird sends successfully, I am able to preview the test emails via Mailwasher on the New laptop, and can read, reply, etc, to the emails if I log into my ISP webmail service. However I can NOT get Thunderbird to retrieve and download these emails on the New laptop. If I go to the Old laptop, Thunderbird works perfectly, retrieves and downloads all new emails, including these test emails.
    I am now at the point where I do not know what else to try and would appreciate any suggestions.....
    I have spent many hours over the last 3 days surfing the net, forums, Mozilla Support, etc, and tried everything suggested, without success. The only thing I have NOT tried is starting windows in Safe mode (as per some suggestions), as it is not a viable long term solution.
    OTHER INFO
    Computer Details;-
    "Old" laptop;-
    Windows 7 Home Premium - continuously updated with all Critical and Important updates. 64 bit version.
    Antivirus = Bitdefender Total Security (subscription and licensed). Up to date.
    MailwasherPro 2012 (subscription and licensed). Up to date.
    Thunderbird 24.5.0 working perfectly. Up to date.
    "New" laptop;-
    Windows 8.1 - up to date with all Critical and Important updates. 64 bit version.
    Antivirus = Bitdefender Total Security (subscription and licensed) - downloaded and installed. Up to date.
    MailwasherPro 2012 (subscription and licensed) - downloaded and installed. Up to date.
    Thunderbird 24.5.0 - downloaded and installed.
    Note: I 'downloaded and installed' the Windows 8.1 version of these programs to avoid any potential compatibility problems restoring or copying from a Windows 7 backup version of the programs.
    1) New laptop came with pre-installed with McAfee - which has been Uninstalled due to running Bitdefender (Windows searches for 'McAfee' return nothing found suggesting the Uninstall was successful).
    2) Thunderbird has been added to both Bitdefender and Windows 8.1 firewalls on the New laptop.
    3) Bitdefender and Windows security settings are identical on both laptops - as near as I can determine, I may be missing something - but have checked all settings 3 times by doing a side-by-side visual comparison.
    4) Thunderbird settings are also identical and I am using the same email address and ISP that I have been using for many years.
    5) I migrated Thunderbird settings, accounts and emails from the Old laptop to the New laptop using Mozbackup, then visually checked and compared all settings in Thunderbird between the two machines.
    6) For info, I have used Mailwasher for many years as a simple way to preview and wash mail before running email programs such as Thunderbird - might be overkill, but I have also never had a virus or malware problem, so will keep doing this.
    7) I have Uninstalled and re-installed Thunderbird on the New laptop twice, and done the same with Bitdefender once.
    8) Any config changes I try on the New laptop, I either restart Thunderbird and / or restart the New laptop, or both.
    9) I have not created a Windows 8.1 account and am not using SkyDrive.
    10) Only other software I have installed on the New laptop is Google Chrome, Office Home 2013 and iTunes - all are working.
    Thanks in advance....

    Well there is not much left. If telnet works then the path is clear and there is no hardware firewall blocking ports.
    All that is left is software, so try windows safe mode with networking. A very handy way to eliminate software. it also actually disables most anti virus resident features and is preferred here because anti virus/security programs do not always disable or turn off when they say they have.
    You might also try the McAfee removal tool. https://community.mcafee.com/thread/52788 I notice the rep said yes to both, they did not say not required.
    Finally you could try creating a new profile, and see if it works just to exclude corruption of your existing profile. ( I doubt it but I am at the anything goes point)
    Just as an aside, I have never had an email borne nasty and I for many years never even had an email virus scanner. So yes I think your a bit over cautious with mailwasher, if that is what your using it for. Thunderbird does not support scripting languages or flash, or most plugins in the email sandbox. The result is getting a virus from a mail in Thunderbird is really only possible, for all practical purposes, if you open that password protected zip from the young Russian woman and that is what the anti virus should be blocking anyway when the temp file is written.

  • Data from check boxes fails to be collected, when sending the PDF as email

    Hi
    I am working on an interactive PDF that should act as an ordersheet for clients to fill out. I am using Acrobat Pro 9, and everything works as intended, but when the client tries to send the order by email (By pressing a button that uses "submit a form" as actio, where it sends the whole PDF to a single email), the pdf pops up in the email client, and everything looks fine, except all of the checkboxes. None of them have been checked, even though the client have done so. I have searched the forums without luck, so now i am trying in here.
    I have made sure that the client is using the version, that has the extended reader rights.
    If you feel need additional information regarding the PDF, just ask.
    Thank you very much for your time.

    Edit>Preferences>Email accounts>List of email accounts. Click the drop-down that says "add account" and select Gmail. After adding it, you can go to the account area and change it to default.

  • Assigning human task to a user not exist in the ldap - actionable task by email address

    Hello experts,
    we have a requirement to assign a task to an external user (not exist in the ldap) to perform some action by allowing the system to send an actionable email.
    Internal user will capture the external-user name & emailaddress in the task form. System should use this information and assign the task to the user by sending an actionable email. Our requirement is, these external users should not have access to bpm workspace, so we can not store the user information within the system.
    Currently I have tried assign the task to an internal user (users configured in weblogic) and system sends out an actionable email and able to set the outcome of the task by replying to the email.
    How can the same be achieved, without the user being in our system? Is it possible? I am OK to create a temporary user before assigning the task, but will be there be any impact if I delete the user after the task has been completed?

    AnilB,
    Assigning a task to a user that is not in the directory will likely result in the BPM flow going into suspended state. To avoid this, assign the task to a pre-created group, you should not get an error even if the group is empty. You can then add and remove the users to that group to control access to the task.
    Phil

  • Execute SQL task for Email ToLine using COALESCE and two variables

    Hello...
    I am converting an old DTS package to SSIS. The old package consist of mostly ActiveX Script so I am breaking it down into steps. Basically... I am retreving a set of records that need to be sent via email to multiple people.  In my package to create
    my ToLine for the Send Mail Task I am using several steps. Frist I am using:
    SELECT CASE
              WHEN EXISTS (  SELECT        users.User_EmailAddress
    FROM            dbo.Errors INNER JOIN
                             dbo.Users ON users.user_id = Errors.MonitorAuditor_User_Id
    WHERE        ([Audit_Id] = ?) AND ([ErrorCode_Id] = ?) ) THEN
                 1
              ELSE
                 0
           END AS ValidEventID
    I use this to see if there is any records to create my email string. This works fine.  After this I have a Script Task that splits my pipe in two. When no records exist (User::ValidEventID == 0) I am loging that event to a log. When records do exist
    I am using another Execute SQL task to create the actual ToLine:
    Declare @combinedString VARCHAR(max)
    SELECT      @combinedString = COALESCE(@combinedString + ', ', '') + Users.User_EmailAddress
    FROM            dbo.Errors INNER JOIN
                             dbo.Users ON users.user_id = Errors.MonitorAuditor_User_Id
    WHERE        ([Audit_Id] = ?) AND ([ErrorCode_Id] = ?)
    SELECT convert(varchar(4000),@combinedString) as StringValue
    I have my resultSet set to Single Row. I have two variables coming if for the Audit_Id and ErrorCode_Id. My Result Set is set to a Variable: User::EmailAddressString.
    Next it goes through a foreach loop to map to the ToLine email variable that I created named User:User_EmailAddress.
    Then I am using that in my Send Email Task.
    It all works fine when I hard code my variables into the COALESCE statement but as soon as I replace that with the ? that SSIS requires for variables I am getting the following error:
    [Execute SQL Task] Error: Executing the query "Declare @combinedString VARCHAR(max)
    SELECT      ..." failed with the following error: "Syntax error, permission violation, or other nonspecific error". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly,
    parameters not set correctly, or connection not established correctly.
    I have tried changing my resultset property, I have checked my paramenters and my connection. I don't understand why it works fine when I have my varaiables hard coded but not when I change them to the ?.
    Thanks in advance for you help in this matter.
    Reach for the unknown!

    Katherine... that did not work. 
    What I ended up doing was taking out the forloop all together. In my Execute SQL Task I changed the result set from single row to XML. I took out the  COALESCE statement and just went for something more basic:
    select users.User_EmailAddress + ';' as User_EmailAddress from Errors inner join users on users.user_id = Errors.MonitorAuditor_User_Id WHERE ([Audit_Id]  = ? AND [ErrorCode_Id] = ?)
    Currently I am just logging the string to a text file so I can see the results. In my text file the string is surrounded by <ROOT></ROOT>. So I will next I will work on triming that off the string and then populate my Send Mail Task.
    This is how I trimed off the <ROOT></ROOT>:
    Dts.Variables(
    "EmailAddressString").Value = Replace(Dts.Variables("EmailAddressString").Value,
    "<ROOT>",
    Dts.Variables(
    "EmailAddressString").Value = Replace(Dts.Variables("EmailAddressString").Value,
    ";</ROOT>",
    Thanks again everyone for the help!
    Reach for the unknown!

  • How to send a delayed notification email?

    How to send a delayed notification email?
    I have a requirement to send an email to the service requestor 2 days after the main fulfillment task is completed.  I know I can create a task that auto-completes using the Dummy adapter, but is there a way to make it auto complete after a certain amount of time has elapsed?  I was thinking about creating a second fulfillment task that would send this email upon completion, but I can't figure out how to delay its start or its end. 

    Hi Tylor,
    James is onto a potential approach here. However, the only way I know of that could work is to use the Scheduled Start feature. This would require that you compute/project the start date of the auto-complete task before the delivery moment begins.
    You would need to do a date calculation and then store the projected date in a hidden field. You could then have your auto-complete task fire on that computed date, using the Scheduled Start feature.
    The wrinkle here, of course, is t

  • Sending the task TS00008267 to an e-mail address

    First of all Hi to all.
    I'm e new users of this forum.
    I'm from italy.
    I have this problem.
    In my travel workflow i use to send all e-mail and all work-item to the users.
    The system forward all task and email to the e-mail address present on the e-mail present in the transaction SU01 filed e-mail.
    We to the automatic forward and the system work's fine.
    Now the client want to change the system and send the task directly by the e-mail saved on the infotype 0105 subtype 0010.
    I have a function that find the e-mail and put there into the workflow contenitor in one field define like this:
    WFSYST-INITIATOR.
    i have try to define this field like SOXNA-FULLNAME but only the e-mail are process correctly, the work-item not.
    This client use lotus notes to approve the task.
    There is someone that had my problem?
    Sorry for my english...
    Massimo

    If you use [email protected] instead of a valid agent your workflow will not necessarily crash, but it will not work as intented and you will just create additional work for the workflow administrator (which may happen to be yourself).
    There are at least two possible outcomes if you try to pass an e-mail address as the agent.
    1) the workflow ends in status error since no agents were found for the work item
    2) the work item is sent to all possible users for the relevant task. If your task is a general task that means it will be available for all users in your system.
    You do not have to navigate all the way to the user name. Several different types of agents are possible, including
    "US<SAP user name>"
    "P <employee number>" (since you have connection to user in infotype 0105)
    "S <position>" (again, possible due to infotype 0105)
    "A <work group>"
    SAP will find out who the relevant users are if the agent that is determined is either an employee, position, work group or even an organization unit. With the exception of work groups you need to have infotype 0105 for this to work.
    You can have a direct relationship from user name to work group, so you don't <u>have to</u> have infotype 0105 for work groups.

  • Configure different contacts in Send mail task

    Hi experts,
    please help in below doubt
    How to configure the send mail task to use different contacts in different environment with environment variable ?
    Thanks

    hi ,
    You can set your Recipient list in one variable then in send mail use can set that variable value in expression for
    TOLine.
    You can use below link;
    http://stackoverflow.com/questions/5075073/send-email-to-dynamic-recipient-ssis-send-mail-task
    Thanks
    Please Mark This As Answer or vote for Helpful Post if this helps you to solve your question/problem. http://techequation.com

  • Sending SQL Report by eMail

    I would like to execute a sql-query and send the result by eMail. How would the syntax be?
    begin
    l_body_html := '<p>Dear Mr. Scott, </p><p>please find below dayly orders of '||:P4_DATUMWAHL||': '||select distinct artnr, produkt, inhalt, sum(anzahl) from auftragsposition a, produkte p, auftrag ak where p.produktid=a.PRODUKT_NR and a.Auftrag_Auftrag_Nr=ak.auftrag_nr and ak.DATUM=to_char(:P4_DATUMWAHL) group by (artnr, produkt, inhalt)||
    ' </p><p>Kind regards </p><p>B. Lewis </p>'

    Found the answer.
    Regrads............Lorenz
    Task: Paste an sql-report into an eMail
    Table Example: scott.emp
    declare
    l_body_html varchar2(4000);
    CURSOR cur IS
    select * from emp;
    rec cur%ROWTYPE;
    begin
    l_body_html := '<p>Dear Mr. Lewis, </p>
    <p>please find attached the report:</p>';
    OPEN cur;
    LOOP
    FETCH cur INTO rec;
    EXIT WHEN cur%NOTFOUND;
    l_body_html := l_body_html || '<p> ' || rec.empno || ' ' || rec.ename || ' ' || rec.job || ' ' || rec.sal || '</p>';
    END LOOP;
    CLOSE cur;
    l_body_html := l_body_html || ' <p>Kind regards </p><p>Scott </p>';
    HTMLDB_MAIL.SEND(
    P_TO => '[email protected]',
    P_FROM => '[email protected]',
    P_BODY => l_body_html,
    P_BODY_HTML => l_body_html,
    P_SUBJ => 'employee report;
    end;

  • Can't send pictures via exchange email

    I just got my Galaxy S III.  I also have a Galaxy Note(1st gen).  The SIII is a lot faster in all aspects. 
    I'm having one issue though.  I am unable to email any pictures using my Corporate Exchange email account.  It just gets stuck in the Outbox and I get a notification that the email failed to send.  I can send other types of files as attachements.  I am able to send a picture using my hotmail account.  On my Note I am able to send pictures from my exchange account.
    Is their another setting in android that blocks this?  I've checked but I can't find one.

    I am having this issue with trying to send pictures from my email applications in my phone. I use Yahoo, but not the Yahoo app. I also tried to use my work email to attach the picture to and send. In both instances, Yahoo and work email, I get a "Failure " message in my outbox of the email application when I look to see if the photo sent. I have received pictures via text before, no problem. I also tried turning of bluetooth, even though where I am currently located there is no wifi/bluetooth to connect to.
    Thanks

Maybe you are looking for

  • Comments/discussion on an approval task/item

    The business has given me a new requirement to an existing approval workflow system, and I'm trying to figure out the best way to do it. A list item is created, and then works its way through three or four sequential approval workflows.  Occasionally

  • Statement download error message

    Trying to download a client statement and I get an error message stating the file type might not be supported or there was an error in decoding.  I've got this message from multiple sites in trying to download pdf files. I am currently operating on W

  • Radio buttons in Captivate 7

    The default radio button when selected in a Multiple Choice question slide has a blue fill when selected.  I'd like it to be orange.  Can anyone help with this please.

  • Time Machine backing up everything EXCEPT my Desktop

    Well i used Time Machine to back up my LaCie 500GB Firewire HD. Never a hassle before, but i'm wondering if there is a glitch possibly with 10.5.7 that isn't allowing it to backup my Desktop. I went into the Time Machine preferences, into the Options

  • How to monitor a file?

    I want my program to monitor a file or directory. whenever the file or the directory is modificated, it will send an event to my program. I use a thread to check the last modification time ever 5 seconds, but i don't think this is a good design.