Jenkins editable email notification attachment : Mail going without attachment - email

The jenkins editable email notification in sending the mail but without the attachment.The attachment is in the workspace of jenkins.Path of attachment jenkins\workspace\projectname\test.csv.In the Attachments field of the editable email notification i am specifying projectname/test.csv but the attachment is not getting send.
I have also tried **/projectname/test.csv ,**/test.csv , /projectname but nothing seems to work.
PS: File size is about 10MB.

Can you use the "Email-ext plugin". more information is available here : https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin

I used a added a execute shell to the build moving (cd) to the directory of the file and then coping (cp) the file to the workspace directory, i them rename (mv) it and then attach it.

Related

Powershell - Automated Outlook 2013 signatures "Images not displaying in emails sent to recipients"

I'm using an existing PS script that I've modified that is linked to Group Policy for
automated Outlook 2013 signatures for all of our end users. Everything works perfect with no issue's but for some reason I cannot get images to attach and send to the recipients. The image is a link at the bottom of the signature to Twitter which is nothing but a small 30x40 png. When I run the PS script it pulls in everything correctly (from AD) and updates my local "signature" folder within Outlook, and it looks correct before I send the email, but when I send the email internally or externally the recipient sees everything correctly except the "Twitter.png". The only object they see is a box with a red X but the link actually works. The image is located on my C drive under signatures and that's where the PS script is pulling the image from when create a new email.
Look at a signature with an image created by Outlook itself - the images are stored in a subfolder, and Outlook adds the image as an attachment.

MailKit: How to check if a sent mail has been added to the "Sent" folder?

When I send an email using MailKit, I need to ensure that the email is added to the Sent folder.
Some email servers, like Gmail and Outlook, seems to automatically add the email to the Sent folder. In other cases, I manually locate the Sent folder and add the email.
Currently, I have hard-coded the server to skip the Sent folder addition step if the client is using Gmail or Outlook, but that is obviously a very hacky solution.
Is there a way to check whether a sent email has already been added to the Sent folder, or if I need to do it myself?
You could check the Sent folder for a message that has the same Message-Id header:
var uids = sent.Search (SearchQuery.HeaderContains ("Message-ID", message.MessageId));
if (uids.Count == 1) {
// looks like the message was added
}

Lotus Notes Attachment embodied within the body of the mail not as an attachment

I've got a problem with Lotus Notes (apart from it's lotus notes), when we receive an e-mail with a csv attachment the attachment gets embodied into body of the message.
Is there any setting on the lotus server I can change to stop this from happening?
Anyone out-there with any ideas?
After over a week I've found out what the issue was. The email sender sent the email with a Context Description of inline rather then attachment thus lotus notes rather then notice that the file extension was csv took the inline factor literally.
Once I change the context description in notepad of the .msg file and resent the file it displayed correctly.

VBA Outlook - Get email addresses from attached .msg files

I would like to have some code that helps me to get the email address of the sender of an attached .msg file.
I have an email with around 10 emails attached. I need to copy the sender address from them into the clipboard or an excel sheet.
You would need to
save the attachment as an msg file,
open it using Namespace.OpenSharedItem
once you open it as MailItem, you can read the MailItem.Sender properties.
You can also use Redemption (I am its author) - it allows to directly open the message attachments as RDOMail objects using RDOAttachment.EmbeddedMsg.

Extract Email Address from Nested Tables in HTML Emails

I will be receiving approx 500 emails over the next day or so. The emails are all identical in layout i.e. HTML emails that display information inside a table. There are nested tables within the email.
I need to extract the email address from each email and store it in a file (text/csv). Rather than "copy & paste", is there a php script or some browser plugin I can use to do this?
GF
I will use php parse by id,class or name and a little script to go throw all the pages inside that folder to extract it as a csv I'll use fputcsv.
Hope it helped.