Export to PDF/Excel a html table and after attach to email
I have a store procedure that send an email with a htmltable every time a person is about to complete a year on a department, so the recipients know they need to rotate the personal.
Now i want to convert that table a pdf or excel file to attach it to the email. How can i convert my htmltable to pdf/excel?
Sorry bad english.
c# sql
add a comment |
I have a store procedure that send an email with a htmltable every time a person is about to complete a year on a department, so the recipients know they need to rotate the personal.
Now i want to convert that table a pdf or excel file to attach it to the email. How can i convert my htmltable to pdf/excel?
Sorry bad english.
c# sql
We can work with a language variance. But you don't have a question here. Just a vague description of a process requirement.
– Sean Lange
Nov 20 at 14:17
@SeanLange edited
– Gabriel Abreu
Nov 20 at 14:21
Still incredibly vague. There are so many ways to do this. I would do it in c# and not in a stored procedure. Or maybe SSIS. But there just isn't any context here to understand what you are trying to do.
– Sean Lange
Nov 20 at 14:23
@SeanLange and now?
– Gabriel Abreu
Nov 20 at 14:32
add a comment |
I have a store procedure that send an email with a htmltable every time a person is about to complete a year on a department, so the recipients know they need to rotate the personal.
Now i want to convert that table a pdf or excel file to attach it to the email. How can i convert my htmltable to pdf/excel?
Sorry bad english.
c# sql
I have a store procedure that send an email with a htmltable every time a person is about to complete a year on a department, so the recipients know they need to rotate the personal.
Now i want to convert that table a pdf or excel file to attach it to the email. How can i convert my htmltable to pdf/excel?
Sorry bad english.
c# sql
c# sql
edited Nov 20 at 14:31
asked Nov 20 at 14:14
Gabriel Abreu
62
62
We can work with a language variance. But you don't have a question here. Just a vague description of a process requirement.
– Sean Lange
Nov 20 at 14:17
@SeanLange edited
– Gabriel Abreu
Nov 20 at 14:21
Still incredibly vague. There are so many ways to do this. I would do it in c# and not in a stored procedure. Or maybe SSIS. But there just isn't any context here to understand what you are trying to do.
– Sean Lange
Nov 20 at 14:23
@SeanLange and now?
– Gabriel Abreu
Nov 20 at 14:32
add a comment |
We can work with a language variance. But you don't have a question here. Just a vague description of a process requirement.
– Sean Lange
Nov 20 at 14:17
@SeanLange edited
– Gabriel Abreu
Nov 20 at 14:21
Still incredibly vague. There are so many ways to do this. I would do it in c# and not in a stored procedure. Or maybe SSIS. But there just isn't any context here to understand what you are trying to do.
– Sean Lange
Nov 20 at 14:23
@SeanLange and now?
– Gabriel Abreu
Nov 20 at 14:32
We can work with a language variance. But you don't have a question here. Just a vague description of a process requirement.
– Sean Lange
Nov 20 at 14:17
We can work with a language variance. But you don't have a question here. Just a vague description of a process requirement.
– Sean Lange
Nov 20 at 14:17
@SeanLange edited
– Gabriel Abreu
Nov 20 at 14:21
@SeanLange edited
– Gabriel Abreu
Nov 20 at 14:21
Still incredibly vague. There are so many ways to do this. I would do it in c# and not in a stored procedure. Or maybe SSIS. But there just isn't any context here to understand what you are trying to do.
– Sean Lange
Nov 20 at 14:23
Still incredibly vague. There are so many ways to do this. I would do it in c# and not in a stored procedure. Or maybe SSIS. But there just isn't any context here to understand what you are trying to do.
– Sean Lange
Nov 20 at 14:23
@SeanLange and now?
– Gabriel Abreu
Nov 20 at 14:32
@SeanLange and now?
– Gabriel Abreu
Nov 20 at 14:32
add a comment |
1 Answer
1
active
oldest
votes
Sendmail is quite limited. SQL Server is really just sending text, even formatted as HTML.
Your options are to send the data as a CSV which would then open in Excel, or otherwise to find an external function which would allow you to encode the data in PDF or Excel format to provide as the attachment.
An alternative would be for your SPROC to trigger an SSIS package that would use the Excel export task to convert your data to an excel file. That could then be sent on as an attached document.
Another possibility is to use SSRS and create a data driven subscription report that saves in PDF format...
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394941%2fexport-to-pdf-excel-a-html-table-and-after-attach-to-email%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sendmail is quite limited. SQL Server is really just sending text, even formatted as HTML.
Your options are to send the data as a CSV which would then open in Excel, or otherwise to find an external function which would allow you to encode the data in PDF or Excel format to provide as the attachment.
An alternative would be for your SPROC to trigger an SSIS package that would use the Excel export task to convert your data to an excel file. That could then be sent on as an attached document.
Another possibility is to use SSRS and create a data driven subscription report that saves in PDF format...
add a comment |
Sendmail is quite limited. SQL Server is really just sending text, even formatted as HTML.
Your options are to send the data as a CSV which would then open in Excel, or otherwise to find an external function which would allow you to encode the data in PDF or Excel format to provide as the attachment.
An alternative would be for your SPROC to trigger an SSIS package that would use the Excel export task to convert your data to an excel file. That could then be sent on as an attached document.
Another possibility is to use SSRS and create a data driven subscription report that saves in PDF format...
add a comment |
Sendmail is quite limited. SQL Server is really just sending text, even formatted as HTML.
Your options are to send the data as a CSV which would then open in Excel, or otherwise to find an external function which would allow you to encode the data in PDF or Excel format to provide as the attachment.
An alternative would be for your SPROC to trigger an SSIS package that would use the Excel export task to convert your data to an excel file. That could then be sent on as an attached document.
Another possibility is to use SSRS and create a data driven subscription report that saves in PDF format...
Sendmail is quite limited. SQL Server is really just sending text, even formatted as HTML.
Your options are to send the data as a CSV which would then open in Excel, or otherwise to find an external function which would allow you to encode the data in PDF or Excel format to provide as the attachment.
An alternative would be for your SPROC to trigger an SSIS package that would use the Excel export task to convert your data to an excel file. That could then be sent on as an attached document.
Another possibility is to use SSRS and create a data driven subscription report that saves in PDF format...
answered Nov 20 at 14:45
iainc
886
886
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394941%2fexport-to-pdf-excel-a-html-table-and-after-attach-to-email%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
We can work with a language variance. But you don't have a question here. Just a vague description of a process requirement.
– Sean Lange
Nov 20 at 14:17
@SeanLange edited
– Gabriel Abreu
Nov 20 at 14:21
Still incredibly vague. There are so many ways to do this. I would do it in c# and not in a stored procedure. Or maybe SSIS. But there just isn't any context here to understand what you are trying to do.
– Sean Lange
Nov 20 at 14:23
@SeanLange and now?
– Gabriel Abreu
Nov 20 at 14:32