The text of this article is not in this database — only its details are. The old site it was published on is gone, but the Internet Archive kept a copy: Sending Mail from Gmail and Save the file in PDF Format
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

Gowtham manjuPosted May 11, 2011, 8:47 AM
can u please help me in solving the problem such as when a word document is being uploaded in gmail or some other mail automatically it must be converted in to pdf on the receiver side that too in my aspx page ....
vishal pateleditedPosted Apr 12, 2011, 1:00 AMEdited Apr 12, 2011, 1:01 AM
Its still not a pdf file though its extention is .pdf. Its treated as a file what ever formate in the explorer... You cant say it creates a pdf file properly.
vishal patelPosted Apr 11, 2011, 4:19 AM
protected void Button2_Click(object sender, EventArgs e) { StreamWriter StreamWriter1 = new StreamWriter(Server.MapPath("Tusar.pdf")); StreamWriter1.WriteLine(TextBox4.Text); StreamWriter1.WriteLine("Line1.\r\nLine2."); StreamWriter1.Close(); TextBox5_Load(); } is not working properly....
Vijay GillPosted Mar 16, 2011, 8:23 AM
Are you sure it saves the file in PDF format? What library are you using for that? Vijay